Tagged Questions
1
vote
2answers
32 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
1answer
54 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
38 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 ...
3
votes
2answers
41 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
2answers
18 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, ...
1
vote
1answer
156 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
2answers
65 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
131 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
1answer
99 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
252 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
3answers
84 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 ...
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
101 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 ...
1
vote
3answers
60 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
107 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
2answers
90 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
80 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 = ...
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:
...
1
vote
2answers
119 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 /*+ ...
2
votes
1answer
189 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
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
88 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 ...
2
votes
1answer
476 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 ...
1
vote
3answers
210 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
...
0
votes
1answer
211 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
629 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
137 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 ...
0
votes
2answers
170 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
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 ...
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
514 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
2answers
64 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
...
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
222 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 ...
0
votes
1answer
797 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
4k 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
363 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
...
1
vote
2answers
133 views
Oracle outer join not giving expected results (behaving like inner join)
This query:
select *
from table_a
, table_b
where table_a.id = table_b.id(+)
and table_b.name = 'BENEFICIARY'
returns me no records. table_b has no records with name='BENEFICIARY'. But the outer ...
2
votes
3answers
156 views
Sybase *= to Ansi Standard with 2 different outer tables for same inner table
I am trying to migrate some legacy procedural code. I am having trouble figuring out the ANSI standard syntax to produce the same results.
Below is one of the many combinations I have tried. What ...
0
votes
4answers
121 views
SELECT * FROM tableA, tableB WHERE Conditions [+]
I have the following query
SELECT *
FROM tableA, tableB
WHERE Conditions [+]
What does this keyword Conditions[+] Stands for?
How this query behaves as a outer join?
-1
votes
3answers
60 views
How to Get A Count From Another Table In SQL? PART 2
Well I have already got my quesiton answered in this post...
How to Get A Count From Another Table In SQL?
However, now I have another question...
In the end I used this query
SELECT
...
0
votes
2answers
275 views
SQL: Join Parent - Child tables
I'm building a simple review website application and need some help with SQL Query.
There are 3 tables (Topics, Comments, Users). I need a SQL query to select the data from all 3 tables.
The ...
0
votes
2answers
448 views
Access 2007 SQL - Mixing Left Join and Inner Join
It's really hard for me to sort this thing out. I've tried every possible combinations on the FROM part but I can't seem to get it. I've tried comma, mixing inner join & left join then this.
The ...
2
votes
2answers
2k views
Workaround for outer join with an IN operator in Oracle
I am using Oracle SQL, so outer joins have the nice (+) syntax. I should warn you that I am not allowed to redesign the database; I work for a large organization.
Here are some example tables:
...
736
votes
10answers
364k views

