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 ...
0
votes
1answer
45 views
SQL query optimisation / refactoring
Just wondering can anyone see a neater way to write this query.
It seems like a lot of repetition to me but I can't see an easier way to write it.
It is pulling back Year-to-date data.
Output looks ...
3
votes
2answers
35 views
How to emulate Oracle (+) outer join notation in in-memory database used to run Java unit tests?
We are using HSQLDB with Oracle database syntax(jdbc:hsqldb:mem:TestDB;sql.syntax_ora=true) for our datalayer unit tests.
(We realize this is not ideal and it would be better if we could test against ...
2
votes
3answers
57 views
What is the cleanest way to do an outer join without equals?
I have two lists, I need to find the items in the first list that are missing from the second, but I can only compare them with a Boolean function.
class A
{
internal bool Matching(A a)
{
...
1
vote
2answers
34 views
Left Outer Join, No result in final query
I'm executing the following query
Select * from A a left outer join B b on (b.id = a.id)
I'm getting one record from A and no records from B. I'm expecting one record in final select query but ...
0
votes
1answer
36 views
left and right joins in sql
I am trying to join three tables in SQL.
I am using the following query but it is not working
select *
from char_level as c1 right join (SELECT distinct character_id as fid, target_character_dbid as ...
0
votes
0answers
28 views
rails squeel right outer join
How to make squeel generate RIGHT OUTER JOIN?
This:
User.joins{comment.outer}
generates LEFT OUTER JOIN.
No, I cannot do Comment.joins{user.outer}, the whole query is much more complicated and ...
1
vote
1answer
30 views
UNIX Full Outer Join creates duplicate entries items despite correct order? Could it be the unpaired items creating disorder?
I have two files that I want to join based on their first column.
They are sorted, and not all of the values in the first column in FILE1 are in FILE2, and viceversa.
FILE1.TXT looks something like ...
0
votes
1answer
58 views
How to eliminate duplicate rows joining on tables across databases?
I have been working on this script for a while and have reached a dead end. The script works but unfortunately produces duplicates. My script joins two different tables across databases on a ...
1
vote
3answers
39 views
oracle sql full join with table a not in
I have to tables (tbla and tblb) with each one col (id):
select * from tbla;
ID
---
1
3
5#A
select * from tblb;
ID
---
2
3
Now I need a full join:
select a.id, b.id
from tbla a
full outer join ...
1
vote
1answer
67 views
how h can true join in examples?
I have the following query which does not give the expected result:
SELECT "invoice"."ITEMNO",
"invoice"."Outgoing",
"storeage"."incoming"
FROM "MVXJDTAP"."MVXJDTA"."invoice"
INNER JOIN ...
3
votes
2answers
42 views
Translating an Aggregate, Outer Join Query to ANSI-92
Executive summary: A query that was composed under SQL ANSI-89
needs to be transferred to a database that using
SQL ANSI-92. Outer joins are involved.
I've been running an ANSI-89 query
I can ...
0
votes
1answer
29 views
differing column names in self-outer-joins
When writing a self-join in tSQL I can avoid duplicate column names thus:
SELECT FirstEvent.Title AS FirstTitle, SecondEvent.Title AS FirstTitle
FROM ContiguatedEvents AS FirstEvent
LEFT OUTER JOIN ...
0
votes
2answers
19 views
Selecting the latest entry from Table1 which isn't *later* than an entry from Table2
Suppose I have a table...
Calibrations:
Date
CalibrationFactor
and another table...
Readings:
Date
Reading
Readings are made regularly... calibrations (which don't alter subsequent readings, ...
0
votes
1answer
53 views
FetchXML with outer joins and nested inner joins: Is it possible to do an outer join on a nested inner join?
I am attempting to do some nested joins using FetchXML. I want to do an inner join on two linked child entities, and then do an outer join on that result to retrieve all rows from the parent along ...
0
votes
1answer
27 views
MySQL: How to join when a particular type of record isn't in another table
My brain is turning to mush over this one, but I suspect there's an easy answer.
I have a table of theatre shows and I also have a table of reviews of those shows. The reviews have a flag to signify ...
0
votes
2answers
31 views
SQL Server outer join issue
I'm having a bit of trouble getting an outer join to work: I've had them work as I expected in MS Access in the past, but getting a similar thing happening in SQL Server is giving me issues.
I have a ...
0
votes
0answers
90 views
Select only the first entry/row on a table for each row in another Table (Full Outer Join command is used)
This is the current command:
SelectCommand="
SELECT
HrEmployee.CardID,
HrEmployee.EmplName,
HrDept.DeptName,
AtdRecord.RecDate,
AtdRecord.RecTime,
EquList.Remark,
HrLocation.LocName
FROM
...
1
vote
1answer
177 views
Oracle SQL Conditional Outer Join using case statement
Lets say that I have three tables:
1. TableA with columns TableAID (PK), Desc Nullable
2. TableB with columns TableBID (PK), TableAID(FK) Nullable
3. TableC with columns TableCID (PK), TableBID ...
0
votes
4answers
26 views
need to join table on based of condition in mysql
I want to integrate like functionality in iOS/android app.
I am developing service for that.
My question is :
I have table called songs in which I have song details
**like**
song
song_id
station_id
...
0
votes
1answer
77 views
mysql right join multiple tables
I’m new to mySQL and I’m struggling to write a query that will list all stores where a price for a product has been scanned as well as the stores where it has not been scanned. The following gives the ...
1
vote
2answers
228 views
Left Outer Join on Multiple Tables hides data with selection expert- Crystal Reports
I'm having trouble with crystal reports in reporting on two tables in a one to many relationship.
Example Tables:
dbo.stock
Barcode Qty
12345 3
11111 5
22222 6
...
1
vote
4answers
58 views
SQL Select When Something IS NOT IN a Joined Table
Ok. I have some data in one table, that references on multiple occasions some data in another table.
Table1 - main client table
Table2 - user defined fields
Say I have a query that shows a client ...
0
votes
1answer
57 views
sqlalchemy and double outerjoin
I need to do double outer join on following 2 tables A and B to get presented result
using SQLAlchemy ORM or SQL expressions.
Table B should be outer joined twice to get joined 2 result sets ...
3
votes
3answers
166 views
merge.data.table with all=True introduces NA row. Is this correct?
Doing a merge between a populated data.table and another one that is empty introduces one NA row in the resulting data.table:
a = data.table(c=c(1,2),key='c')
b = data.table(c=3,key='c')
b=b[c!=3]
b
...
0
votes
0answers
22 views
MySql index is loosing
I have a datatable in MySQL.
It has a specific structure. It has a primary key (bigint). But I also have a field (bigint) that is a foreign key reference to the primary key in the same table.
When I ...
1
vote
1answer
33 views
Stuck on a simple query - OUTER JOIN
I have a simple query to get, but I'm stuck and I really can't figure out how to do this.
More specifically:
The table Allarmi has a lot of entries, which i show all grouped by Allarmi.IDComponente
...
0
votes
1answer
70 views
Creating a function to implement full outer joins in Sybase
I have a long nested full outer join sequence I need to implement in Sybase Adaptive Server Enterprise. Is it possible to write a function for this?
I want to simplify the code below:
select ...
0
votes
2answers
74 views
Multiple left joins to single table
I have a whole bunch of tables:
Table1: PersonID, A1, A2, A3, ...
Table2: PersonID, B1, B2, B3, ...
Table3: PersonID, C1, C2, C3, ...
Table4: PersonID, D1, D2, D3, ...
...
Table1 is special as ...
1
vote
2answers
139 views
Self join with inner and outer join query
I have a table that is set up so that one column (attribute) contains information like first name, last name, account number and any other information related to a thing in the database. Another ...
2
votes
2answers
270 views
outer join in MS Excel
do you have an idea how to join two tables with the outer join ? Know to do this in SQL, but I need Excel now.
I have a list of all employees in one column
I have a table of task for every employee. ...
5
votes
1answer
92 views
How does one do a full join using data.table?
In the data.table FAQ, the nomatch = NA parameter is said to be akin to an outer join. However, I haven't been able to get data.table to do a full outer join – only right outer joins.
For example:
a ...
2
votes
1answer
106 views
Issue selecting Category and SubCategory of an Item while creating one delimited string per row of a table
Some Context: The DB is Oracle. I am trying to create one delimited string per row of a table. The delimited string needs to contain two of the item's categories (if available, there will always be ...
0
votes
3answers
286 views
How to left outer join from two tables to a third table
I've got three tables A B and C (the last is the result I want)
A.id B.age C.id C.age result id age
1 5 1 5 1 5
2 6 ...
0
votes
1answer
25 views
How to count matches across two sets of data
I am using Micorosft SQL Server. I have two tables, t1 and t2, that each consist of the following set of variables: PatientID, AdmissionDate, DiagnosisCode. Note that multiple diagnoses within an ...
0
votes
1answer
90 views
Use SUBSTR in HSQL left outer join clause
I need to perform the following querry using HSQL (with ORACLE works fine):
select t.name as sh_name,
b.name as sh_bName
from PERSON t
left outer join TRANS tr on t.id=tr.tid
...
1
vote
1answer
481 views
TSQL query to merge data from multiple tables that may or may not have matching rows?
For example, suppose we're conducting research where students can take up to 10 different tests, and each table in the database stores all the students' responses for one test. The tables are named ...
0
votes
3answers
85 views
Add multiple columns in FULL JOIN, assume empty row as zero
I run PostgreSQL and I have multiple (10+) tables with identical column names and formats and I would like to sum two of their columns. If a row is missing in one of the tables, I need it to be ...
0
votes
2answers
144 views
Multiple Joins between multiple tables
I am building a Time off requests tool for work.
I have 3 tables: REQUESTS, COVERED, and MODID.
REQUESTS Has the following fields:
ID INT Auto_Increment not null Primary Key
MODID VARCHAR(7) not ...
0
votes
0answers
34 views
Left join didn't pick all the records from left table [closed]
INSERT INTO project_dim1
(
project_id,project_name,client_name,
list_type,project_start_date,
project_create_date,actual_project_end_date,
...
0
votes
1answer
43 views
How Do I Use Joins for Three Tables in Ruby on Rails?
I am working on a Ruby on Rails application which already has logic for text searching using pg_search and two other fields on a model. The logic creates an 'array' of rows from the search result. I ...
1
vote
1answer
41 views
JOIN Problems with SQL Server
I have table (user_page_cells) displayed with the following query:
SELECT tag_id, nid
FROM user_page_cells WHERE nid = 1;
It gives me the results:
I also have a table (graph_tags):
SELECT *
...
0
votes
4answers
157 views
Not sure what is the result of this right outer join
Right outer join is similar to a Union of a venn diagram right?
I mean for A right outer Join B we should get all the rows of B and any matching rows in A.
For some reason I am confused with the ...
0
votes
0answers
81 views
How To translate Oracle outer join in where-clause to LINQ
I am converting(modernizing) an old .NET 1.1 application to .Net 4 and got stuck on translating an old SQL query to LINQ
The SQL query looks like this
SELECT PROJEKT.ID_PROJEKT,
...
0
votes
1answer
67 views
Combination of table left join to an inner join in mysql
Lets say, I have 3 tables, cars, cars_owner and owner.
Now I want to have the complete list of cars, those that do have owners and those that don't.
When a car has an own, I must have the data of the ...
1
vote
3answers
62 views
Compound mysql Select After outer join
I have a table A with columns (a, b) and a table B with columns (b, c). I want to do the following:
STEP 1: do a A LEFT OUTER JOIN B ON A.b = B.b
STEP 2: convert all c = NULL in the Joined table to ...
2
votes
2answers
114 views
SQL Full outer join exclusion, select non existing row
this is a confusing question to write for me so bare with me.
I have 3 tables
section
id
name
permission
id
section_id
name
exclusion_permission
permission_id
The query is as follows:
SELECT
...
0
votes
3answers
189 views
Oracle Procedure - JOIN with Subquery
I need some help finishing this procedure. The problem is how to alias the different SELECTs so that I can match them on the RIGHT OUTER JOIN. The traditional AS doesn't work. Any ideas?
PROCEDURE ...
1
vote
2answers
413 views
Hibernate HQL Query with outer join
I would like to ask how to change the OUTER from Informix to HQL query. Currently facing error with unexpected token:outer
SQL query:
select a.SC_OB_PROFILE_CODE, b.SC_ORIG_SF_GROUP_CODE, ...
0
votes
2answers
91 views
LEFT OUTER JOIN needs improving due to poor performance
I have a table that has a Name column along with with 3 identifiers that refer to other entries within the same table. I a query that resolves those 3 identifiers into the actual names of the records ...
0
votes
1answer
86 views
SQL Compact Edition LEFT OUTER JOIN Average
I have a table with products and a table with ratings. I have the following query;
SELECT products.name, ratings.rating
FROM products
LEFT OUTER JOIN ratings
ON products.id = ...





