An **outer join** defines a relationship between two tables where all records from one or both tables are returned regardless of the existence of a matching key-field in the other table. A full outer join combines the results of both tables. A left or right join returns all the records from the ...

learn more… | top users | synonyms

1
vote
2answers
158 views

SQL Outer Join Time Replace Null Values

(SQL SERVER 2008) I have timestamped records in multiple tables to join to a master/base table. The timepoints are sometimes equal to the base table, but sometimes not. Code to create tables: ...
2
votes
3answers
109 views

Full outer join of two string arrays

Given the following two strings: Dim str1() As String = {"123", "456", "789", "0"} Dim str2() As String = {"123", "456", "1"} How do I perform a full outer join of str1 and str2 and end up having a ...
1
vote
2answers
121 views

Are this query identical? Not exist and left outer join formulation

I want to take every record of ENI_MONITOR which is orphan. In ENI_FLUSSI_HUB the corresponding record should not exists. Are both te formulation correct? How does left outer join thinks? SELECT /*+ ...
0
votes
0answers
72 views

Use a Linq statement to perfrom outer join

Starting with the collection below, what Linq statement do I need to return a results set that satisfies the test? private List<dynamic> _results; [SetUp] public void SetUp() { _results = ...
2
votes
1answer
190 views

outer join more than 1 table

let's say I have 5 tables, as follows: CREATE TABLE T1 ( FIRST_NAME VARCHAR2(100), LAST_NAME VARCHAR2(100), CITY NUMERIC, SALARY NUMERIC); CREATE TABLE T2 ( CITY NUMERIC, DISTRICT NUMERIC); CREATE ...
0
votes
1answer
43 views

MySQL count with multiple joins and group by

I can't seem to figure out the proper way to structure this query, and I know there's a way to do it with pure SQL and I would rather do it via a proper query than in my application logic. I have ...
0
votes
0answers
87 views

core data and left outer join. Possible?

Any help will be appreciated I have 4 tables : Categories + + catalog Products + SellDetails + + sells Sell + as you can imagine the sell ...
0
votes
1answer
144 views

sql server using outer join result into table format

I am setting a query to send the results via email and I am getting the result formatting incorrect. I want to select values from two tables where in table 1 a certain field is null and also add a ...
0
votes
3answers
82 views

Do I have to do a LEFT JOIN after a RIGHT JOIN?

Say I have three tables in SQL server 2008 R2 SELECT a.*, b.*, c.* FROM Table_A a RIGHT JOIN Table_B b ON a.id = b.id LEFT JOIN Table_C c ON b.id = c.id or SELECT a.*, b.*, c.* FROM ...
1
vote
1answer
90 views

Date Join Query with Calculated Fields

I'm creating an Access 2010 database to replace an old Paradox one. Just now getting to queries, and there is no hiding that I am a new to SQL. What I am trying to do is set up a query to be used by ...
0
votes
2answers
87 views

get distinct record from 3 tables using join in codeigniter

i have three tables cases,clients,attendance in cases id start_date end_date client_id status 1 2012-12-30 2013-01-30 1 new starts 2 2012-12-31 2013-01-31 ...
5
votes
3answers
333 views

data.table inner/outer join with NA in join column of type double bug?

Following this wikipedia article SQL join I wanted to have a clear view on how we could have joins with data.table. In the process we might have uncovered a bug when joining with NAs. Taking the wiki ...
1
vote
3answers
101 views

Linq To SQL. How to prevent using Apply operator

I have a query: var contactInfos = from person in persons join tempDesiredCar in desiredCars on person.contact_id equals tempDesiredCar.groupEntity_id ...
0
votes
2answers
33 views

Creating a view and getting duplicate transactions

I have the following view: SELECT t.CompanyCode, t.FlatFileName, t.RecordNumber, t.Status, t.Branch, t.SalesMonthYear, t.SalesCashOrLimboCode, t.PageNumber, t.Driver, t.Truck, ...
2
votes
2answers
105 views

How to create summary data frame with all possibilities in R

If I have a vector of possible hours and possible items: possible.items = c(12,13,14,15,16) possible.hours = 0:23 And some data on customers who purchased those items at the hour they purchased ...
2
votes
1answer
486 views

Cannot join on Memo, OLE, or Hyperlink Object - Access 2007 - outer joins

I have 2 tables like this in Access 2007... Table 1 - tbEmployees Details FieldName Data Type PK *ID Autonumber EmployeeID Number First ...
0
votes
2answers
101 views

How to use (left/right) outer join for this LINQ that join 3 entities?

Using MVC 3, EF4.1: Building a quiz screen, I am joining three entities: Steps, Questions, Responses Each Step can have many questions, each question can have one or no responses My issue is when I ...
1
vote
3answers
213 views

SQL transforming from (+)= query to left outer join

Query before transformation SELECT w.tech AS tech, w.wpcddate AS job_date, w.corp AS corp, w.house AS house_number, w.cust AS cust_number, h.zipcode AS zipcode ...
1
vote
1answer
102 views

Right Outer Join Issue in a CTE

Ultimately I'd like my end result to look like the following: ReportingDate FundCode FundName AssetClass Rank Percentage ...
0
votes
1answer
215 views

SQL Query: Complex Inner Joins and Outer Joins

Hi everyone I am currently working on an SQL sample project, trying to learn the basics of SQL and inner outer joins in general. This is my current Database diagram: http://imgur.com/z0Ger I am ...
0
votes
2answers
659 views

Left outer join SQL Server

I'm confused as to why this is not working, I've used this type of syntax several times but this one as got me pulling my hair out. I have two tables; tableA regId name regStatus 1 George 1 ...
1
vote
2answers
141 views

SQL Left vs Right Outer Join. Return all values

PROBLEM: Need query to return the MONTH and YIELD for Each Year. For some reason, if the data is not found in a Month a.Month the query will not return the b.Month's Yield. I need the query to ...
1
vote
1answer
231 views

Fluent NHibernate mapping Parent/Child Tables with orphaned child records

I'm new to Fluent NHibernate and C#.NET and struggling with this problem. I have two tables: audit: audit_seq (Primary Key), user_code (Foreign Key), audit_date username: user_code ...
0
votes
1answer
186 views

Right outer join in hql giving unexpected token for and condition

I am using hibernate 3.0. I am applying the right outer join. my query is List<Integer> phaseCount1 = getHibernateTemplate().find("select count(phasesPlan.phaseid.id) as Phase from PhasePlan ...
0
votes
2answers
172 views

Combine SQL View with Left Outer Join Query

I have a view called Home: CREATE VIEW `skohr`.`Home` AS Select Song_OID, Song_Name, Album_Name, Artist_First_Name, Artist_Last_Name, Band_Name, Genre, Album_Art_File_Path From Song, Album, Artist, ...
1
vote
1answer
31 views

MySQL: how to make this query involving a join and a left join

This is just a college exercise, so I'm not in a hurry. But I'd like to have the answer already. Consider these tables and rows: create table course ( numco integer, nameco varchar(20) not ...
1
vote
1answer
126 views

Full outer join on multiple fields

I have several tables of academic journal rankings, from different sources and with different citation metrics. I want to combine them in a single table, aggregating data by journal. For example, the ...
1
vote
2answers
70 views

Customization of nhibernate <set> querying

I want to get ClassA.ClassBCollection property filtered and paged. I need to change filtering dynamically. The default querying will result in something like: select * from ClassA ...
0
votes
2answers
84 views

Alternate to NOT IN in mysql where query has inner join

I got a situation where I want to get the data from one database table which are not in other database table. For that I am using NOT IN clause. This works fine for small amount of data. When tables ...
0
votes
2answers
46 views

Right Outer join issue

I've two tables that I want to join and filter data from. I used a stored procedure to do that. My intention is to bring every item from the second table (i.e Department) even if they don't have a ...
4
votes
4answers
529 views

MySQL Counting unique values over two columns and joining those counts for each column

I have a table that is setup like this: +----+-------+-------+ | id | col1 | col2 | +----+-------+-------+ | 1 | John | Mike | | 2 | Mike | John | | 3 | Marty | John | | 4 | ...
1
vote
1answer
184 views

How does a hash full outer join work?

I know the algorithm for a hash left outer join is to build a hashtable on the right table and then loop through the left table and search in the hashtable for if there is a match, but how does a full ...
1
vote
1answer
103 views

How to do a self outer join in Oracle?

How can one do a self outer join in oracle ? (I'm using 11g) I tried the following query with lots of combinations of (+) everywhere and left/right : select t1.name, t1.status, t2.status from my_tab ...
1
vote
2answers
65 views

Simplifying a query (with left outer join)

Our app has been using this query for a while now: SELECT id FROM invoice WHERE id NOT IN (SELECT invoice_id FROM invoice_transaction) #437 rows returned In a code review, this query was ...
0
votes
2answers
75 views

How can I get join not duplicate?

I get join 2 tables but use 3 table. I need not duplicate values. But I try join have duplicate. Table peopleAll: pNo pName ------------- 00001 Sang 00002 Janta 00003 Els 00004 Est 00005 Sam ...
0
votes
3answers
251 views

Multiple columns in Linq left outer join

Could somebody help me complete this linq left outer join query so that the second column of the right table (tempData) is contained in the result set even though it may be null? sortedData = From cs ...
0
votes
1answer
89 views

How show datetime select only in Sql Server?

I need show datetime when I select datetime only. Because I try to run SQL but show all datetime. Table Emp: EmpNo fullName 00001 Midna 00002 Klog 00003 Porla 00004 Seka 00005 Mila ...
0
votes
1answer
377 views

OUTER JOIN of multiple tables in Pig

I need to join multiple tables. The command that I am using is as follows: G = JOIN aa BY f, bb by f, cc by f, dd by f; To make it a full outer join, I added a FULL to make it: G = JOIN aa BY f ...
6
votes
1answer
233 views

Outer join in Clojure

Similar to this question: Inner-join in clojure Is there a function for outer joins (left, right and full) performed on collections of maps in any of the Clojure libraries? I guess it could be done ...
0
votes
1answer
62 views

Use SQL query with a join clause in a view

Is it possible to create a database view that emulates the select query below? select A.Name, B.Subscription from TestTableA as A left outer join TestTableB as B on A.ID = B.A_ID and Subscription ...
1
vote
2answers
83 views

Can a where clause on a join be used in a view

I'm attempting to create an SQL view that consolidates a number of separate select queries. I've encountered some difficulty putting clauses from the individual select statements into the database ...
2
votes
2answers
98 views

Multiple outer joins that can include empty subset

I have a table of objects and an attribute table containing a variety of attributes which an object may or may not have. I want to get all the attributes along with the object, or null if it doesn't ...
2
votes
1answer
234 views

Multiple outer joins semantics

Some SQL code: SELECT * FROM table1 tab1 LEFT OUTER JOIN table2 tab2 ON (tab1.fg = tab2.fg) LEFT OUTER JOIN table4 tab4 ON (tab1.ss = tab4.ss) INNER JOIN table3 tab3 ON (tab4.xya = ...
0
votes
1answer
100 views

extractValue and right outer join - Oracle SQL

i got a little (at least i hope so) problem with an SQL Query. Here's my join WHERE obj.mod_type = 'SER' and obj.wrk_id=wrk_lang.id(+) and ...
1
vote
2answers
100 views

How to print each day of the week as Column 1 in a MySQL query where not all days have a result

I have the following query which shows the number of hours billed for each day of the week SELECT DAYNAME(record_date), sum(value) FROM acx_time_records WHERE acx_time_records.state = 3 AND ...
1
vote
1answer
47 views

SQLite Person Involved in A OR B

I'll be honest this is a homework question, but I've wasted hours into it and just can't get it right. It returns either the wrong number of results or the wrong data: I need to select every person ...
0
votes
1answer
815 views

Oracle outer join on 3 tables

If I have two tables (A and B) that are joined on col 'id' and i want to get all records from A regardless of a corresponding record in B, I know I can do: select * from A left outer join B on A.id = ...
0
votes
2answers
5k views

LEFT OUTER JOIN 3 tables

I'm updating queries that were using the old construction for outer joins (=* and *=). I have 3 tables that I need to include in an outer join. The original query is: SELECT s.SkillID , ...
2
votes
2answers
368 views

Sql server combine multiple data sets without duplicate data

Given three tables Ta, Tb, Tc: Ta(ID, Field1) Tb(ID, Field2) Tc(ID, Field3) Given data example: Ta ID Field1 --------- 1 A 1 B Tb ID Field2 --------- 1 C 1 D 2 E Tc ID Field3 --------- 1 F ...
0
votes
2answers
112 views

Mysql JOIN with IN and multiple results of RIGHT table

The LEFT table (simplified) is: id name (ex:Bob) tags (ex:1,4,6) The RIGHT table is: id tag (ex:Sailing) I want to get the results of the LEFT table like this: row 1: name: Bob tags: ...

1 2 3 4 5 7