Tagged Questions
The outer-join tag has no wiki summary.
34
votes
3answers
14k views
How to join data frames in R (inner, outer, left, right)?
Given two data frames
df1 = data.frame(CustomerId=c(1:6),Product=c(rep("Toaster",3),rep("Radio",3)))
df2 = data.frame(CustomerId=c(2,4,6),State=c(rep("Alabama",2),rep("Ohio",1)))
> df1
...
27
votes
2answers
26k views
LINQ to SQL - Left Outer Join with multiple join conditions
I have the following SQL which I am trying to translate to LINQ:
SELECT f.value
FROM period as p
LEFT OUTER JOIN facts AS f ON p.id = f.periodid AND f.otherid = 17
WHERE p.companyid = 100
I have ...
12
votes
4answers
5k views
How to do a full outer join in Linq?
I've inherited a database that wasn't designed exactly optimally, and I need to manipulate some data. Let me give a more common analogy of the kind of thing I have to do:
Let's say we have a Student ...
8
votes
3answers
10k views
Linq Sub-Select
How do I write a sub-select in LINQ.
If I have a list of customers and a list of orders I want all the customers that have no orders.
This is my pseudo code attempt:
var res = from c in ...
8
votes
2answers
7k views
Full outer join in django
How can I create a query for a full outer join across a M2M relationchip using the django QuerySet API?
It that is not supported, some hint about creating my own manager to do this would be welcome.
...
7
votes
6answers
884 views
Oracle (Old?) Joins - A tool/script for conversion?
I have been porting oracle selects, and I have been running across a lot of queries like so:
SELECT e.last_name,
d.department_name
FROM employees e,
departments d
WHERE ...
6
votes
4answers
135 views
Linq-to-sql not producing multiple outer-joins?
I've got a strange problem regarding linq-to-sql, and i've really tried search around for it. Im designing a sql database and where have just recently tried to retrieve an object from it.
The ...
6
votes
1answer
490 views
Full Outer Join in MySQL
I want to do a Full Outer Join in MySQL. Is this possible? Is a Full Outer Join supported by MySQL?
6
votes
2answers
1k views
Linq to Entities and LEFT OUTER JOIN issue with MANY:1 relations
Can somebody tell me, why does Linq to Entities translate many to 1 relationships to left outer join instead of inner join? Because there's referential constraint on DB itself that ensures there's a ...
5
votes
4answers
2k views
LINQ - Full Outer Join
I have a list of people's ID and their first name, and a list of people's ID and their surname. Some people don't have a first name and some don't have a surname; I'd like to do a full outer join on ...
4
votes
2answers
465 views
Cross join behaviour (SQLServer 2008)
I have been trying to track down a problem with a query I have. The query is actually generated by hibernate from HQL but the resulting SQL doesn't do what I expect. Modifying the SQL slightly ...
4
votes
2answers
326 views
Oracle “(+)” Operator
I am checking some old SQL Statements for the purpose of documenting them and probably enhancing them.
The DBMS is Oracle
I did not understand a statement which read like this.
select ...
from a,b
...
4
votes
5answers
393 views
SQL Server 2005 RIGHT OUTER JOIN not working
I'm looking up access logs for specific courses. I need to show all the courses even if they don't exist in the logs table. Hence the outer join.... but after trying (presumably) all of the ...
4
votes
5answers
151 views
For SQL, when did it start to be desirable to always use the words “Inner Join” instead of implicitly joinly?
For SQL, when did it start to be desirable to always use the words "Inner Join" instead of implicitly joining by:
select * from t1, t2 where t1.ID = t2.ID;
? Is it just for style or to distinguish ...
4
votes
2answers
5k views
Remove Duplicates from LEFT OUTER JOIN
Hey folk
my question is quite similar to http://stackoverflow.com/questions/757957/restricting-a-left-join
I have a variation in that request though and the comment didn't allow too many characters ...
4
votes
2answers
8k views
(Lazy) LEFT OUTER JOIN using the Hibernate Criteria API
I want to perform a LEFT OUTER JOIN between two tables using the Criteria API. All I could find in the Hibernate documentation is this method:
Criteria criteria = this.crudService
...
4
votes
4answers
2k views
top 1 with a left join
Given the query below there might be multiple rows in dps_markers with the same marker key but we only want to join against the first. If I take this query and remove the top 1 and ORDER BY I get a ...
4
votes
9answers
1k views
Compare inner join and outer join SQL statements
What is the difference between an inner join and outer join? What's the precise meaning of these two kinds of joins?
3
votes
2answers
33 views
FULL OUTER JOIN value condition
I need to add value condition to the FULL OUTER JOIN.
I.e. I'm triyng to do this:
SELECT *
FROM Table1
FULL OUTER JOIN Table2 ON Table1.Field1 = Table2.Field1 AND Table2.Field2 > 5
But this ...
3
votes
4answers
72 views
Why doesn't my query return any results?
Why does this sql query only show results if they only have a row in users_warnings?
SELECT
u.id,
uw.warning
FROM
users u
INNER JOIN users_warnings uw ON (
u.id = uw.uID
)
LIMIT 21
I ...
3
votes
2answers
69 views
How do I full join in Mysql?
I have two tables:
T1
1,a
2,b
T2
2,ggg
3,hhh
I want the join between them to give me all fields:
1,a,null,null
2,b,2,ggg
null,null,3,hhh
3
votes
2answers
235 views
Outer Join with ORM mapping in SQLAlchemy
I am using the ORM Mapping in SQLAlchemy 0.6.8.
I have three tables (A, B and C), with no foreign keys between them.
I am trying to join table A and B, and then left outer join that with C. I am ...
3
votes
4answers
419 views
Opposite Of An Inner Join Query
can someone help me write sql for a scernerio like this:
Table 1
2 columns: ID, Name
Table 2
2 columns: ID, Name
I want a query to show names from Table 1 that are not in table 2. So filter out ...
3
votes
4answers
237 views
Get me the clear picture of outer joins in Oracle 9i
Outer joins seem to me a little bit confusing.
Is there anyone can get me a clear picture of outer joins (right, left and full)?
3
votes
2answers
1k views
Basic Question : LEFT OUTER JOIN vs Left Join
What is the difference between between Left Join and Left Outer Join?
3
votes
2answers
300 views
In SQL / MySQL, can a Left Outer Join be used to find out the duplicates when there is no Primary ID index?
I would like to try using Outer Join to find out duplicates in a table:
If a table has Primary Index ID, then the following outer join can find out the duplicate names:
mysql> select * from ...
3
votes
2answers
224 views
SQL : where vs. on in join
Perhaps a dumb question, but consider these 2 tables :
T1
Store Year
01 2009
02 2009
03 2009
01 2010
02 2010
03 2010
T2
Store
02
Why is this INNER JOIN giving me ...
3
votes
4answers
169 views
Joining on a common table, how do you get a FULL OUTER JOIN to expand on another table?
I've scoured StackOverflow and Google for an answer to this problem.
I'm trying to create a Microsot SQL Server 2008 view. Not a stored procedure. Not a function. Just a query (i.e. a view).
I have ...
3
votes
2answers
3k views
What is the precedence of multiple JOIN statements in sqlite?
The following two queries are returning different results, to my surprise:
SELECT *
FROM foo
JOIN bar
ON bar.id=foo.bar_id
JOIN baz
ON baz.id=foo.baz_id
...
3
votes
3answers
638 views
Need help with an Opposite to Inner join Query using LINQ
I have two tables in an XML Dataset. T1, T2. Each of the tables has a ID column.
T1 has a list of Customers
T2 has a list of Orders
I want to build a LINQ query that returns only the ID of the ...
3
votes
1answer
4k views
How do you combine an inner and outer join in mysql
I can do it in sybase and I can do it in oracle, but I'm not seeing how to do it in mysql.
I've got this:
(please restrain yourself from re-formatting my sql, last time somebody did that they changed ...
2
votes
0answers
34 views
Hibernate/JPA: How to force implicit joins to use LEFT OUTER JOINS
There is a class Offer that has optional relationship to class Article. So that some offers article property holds a null value.
If i use the following statement, everything works fine. I got all ...
2
votes
6answers
109 views
AND syntax in outer join?
this is a small piece of a much larger query that I have discovered is a problem.
I'm trying to add a filter to my outer join in addition to the primary key. The problem is that I'm receiving ...
2
votes
1answer
52 views
Inexplicable behaviour in MS Access full outer join?
I attempt to do a full outer join of two tables CMVSC and TOXOSC in MS Access in order to examine which IDs are contained in both/just one of the tables:
(SELECT * FROM CMVSC LEFT JOIN TOXOSC ON ...
2
votes
3answers
98 views
MySQL, three tables: Select all rows in right table including rows that are not mapped in middle table
My schema are as follows:
Sites S
| S.Id | S.Url |
| 1 | a.com |
| 2 | b.edu |
| 3 | c.org |
SiteFeatures SF
| SF.SiteId | SF.FeatureID |
| 1 | 1 |
| 1 | 2 ...
2
votes
1answer
169 views
(+) syntax for outer joins in mysql [closed]
Possible Duplicates:
Oracle “(+)” Operator
Oracle (Old?) Joins - A tool/script for conversion?
I have been somewhat spoiled by using Oracle for years. Now I am using mysql ...
2
votes
1answer
64 views
Want to exclude from the query some records, but I do not know how
I have three tables like this:
messages
user_id | message
2 | 'foo'
3 | 'bar'
blacklists
user_id | blacklister_id
1 | 2
users
id | name
1 | 'me'
2 | 'blacklister'
...
2
votes
3answers
42 views
Selecting data from table with join
I have two tables and I am trying to get information with an outer left join.
I have the following query:
SELECT *
FROM sportjefit_user
LEFT OUTER JOIN vriend ON sportjefit_user.id = ...
2
votes
0answers
220 views
Nhibernate Query and OrderBy cause multiple join on the same tables
The two core entities in the model are:
Account
Registration
Here is the fluentNH mapping between Account and Registration:
.Override<Account>(m =>
{
m.References(x =>
...
2
votes
1answer
294 views
Left Join, Order by, MySQL Optimization
I have a query like this:
SELECT m...., a...., r....
FROM 0_member AS m
LEFT JOIN 0_area AS a ON a.user_id = (SELECT user_id
FROM ...
2
votes
3answers
1k views
PostgreSQL: left outer join syntax
I'm using PostgreSQL 8.4.6 with CentOS 5.5 and have a table of users:
# select * from pref_users where id='DE2';
id | first_name | last_name | female | avatar | city | lat ...
2
votes
3answers
341 views
t-sql outer join across three tables
I have three tables:
CREATE TABLE person
(id int,
name char(50))
CREATE TABLE eventtype
(id int,
description char(50))
CREATE TABLE event
(person_id int,
eventtype_id int,
...
2
votes
1answer
197 views
How do I convert a “legacy” left outer join statement in Oracle?
I have two tables (A and G) in an Oracle database that can be joined together based off an account number. The one caveat to this is that one of the tables (G) has about 80 fewer records than the ...
2
votes
1answer
432 views
SQL Server 2008 Optimize FULL JOIN with ISNULL statements
HI All
I was hoping someone could help me improve a query I have to run periodically. At the moment it takes more than 40 minutes to execute. It uses the full allocated memory during this time, but ...
2
votes
2answers
270 views
Efficient way to simulate full outer join in MySQL?
According to Google search: since MySQL does not support full outer join, it could be simulated via union and/or union all. But both of these either remove genuine duplicates or show spurious ...
2
votes
1answer
466 views
nhibernate generate left outer join on many-to-one entity
i'm using nHibernate 2.1.2 and relized that nhibernate will generate left outer join on nested many-to-one entities. it seems start generate left-outer-join on 3rd nested note onwards which start from ...
2
votes
1answer
1k views
JPA OUTER JOIN without relation
I need make OUTER JOIN of two entities in JPA (saying master, detail), but the problem that at the entity level there are no relations (and i don't want add it).
@Entity
class Master
{
...
2
votes
2answers
273 views
Left Join on Associative Table
I have three tables
Prospect -- holds prospect information
id
name
projectID
Sample data for Prospect
id | name | projectID
1 | p1 | 1
2 | p2 | 1
3 | p3 | 1
4 | p4 | 2
5 | p5 ...
2
votes
1answer
603 views
MySQL Join a Table if Exists Question
I have a DB which has a table called config. This table could possibly have a config_cstm table that is related by the id to the config table.
I was wondering - is there a way to dynamically check ...
2
votes
1answer
468 views
Should you use outer join fetching with NHibernate and Sql Server 2008?
On outer join fetching, the Nhibernate documentation says:
If your database supports ANSI or
Oracle style outer joins, outer join
fetching might increase performance by
limiting the number ...