SELECT * FROM tableA, tableB WHERE Conditions [+] - sql

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?

That is old Oracle Join syntax.
SELECT *
FROM tableA, tableB
WHERE Conditions [+] -- this should be tableA (+) = tableB
The positioning of the + sign denotes the JOIN syntax.
If you query was:
SELECT *
FROM tableA, tableB
WHERE tableA.id (+) = tableB.Id
Then it would be showing a RIGHT OUTER JOIN so the equivalent is:
SELECT *
FROM tableA
RIGHT OUTER JOIN tableB
ON tableB.id = tableA.Id
If the + sign was on the other side then it would be a LEFT OUTER JOIN
SELECT *
FROM tableA, tableB
WHERE tableA.id = tableB.Id (+)
is equivalent to
SELECT *
FROM tableA
LEFT OUTER JOIN tableB
ON tableA.id = tableB.Id
I would advise using standard join syntax though.
If you do not specify a + sign then it will be interpreted as an INNER JOIN
SELECT *
FROM tableA, tableB
WHERE tableA = tableB
it's equivalent is:
SELECT *
FROM tableA
INNER JOIN tableB
ON tableA.id = tableB.id
A FULL OUTER JOIN would be written using two SELECT statements and a UNION:
SELECT *
FROM tableA, tableB
WHERE tableA.id = tableB.Id (+)
UNION
SELECT *
FROM tableA, tableB
WHERE tableA.id (+) = tableB.Id
It's equivalent is:
SELECT *
FROM tableA
FULL OUTER JOIN tableB
ON tableA.id = tableB.id
Here is a tutorial that explains a lot of these:
Old Outer Join Syntax

It is not important how that behaves. You should use the standard syntax for outer joins:
select *
from tableA left outer join
tableB
on . . .
The "(+)" syntax was introduced by Oracle before the standard syntax, and it is highly out of date.

'Conditions' here just means what you're using to filter all this data.
LIke here's an example:
SELECT *
FROM tableA, tableB
WHERE Name like '%Bob%'
would return names that have "Bob" anywhere inside.
About outer joins, actually you'd use that in the FROM clause:
So maybe
SELECT *
FROM tableA ta
OUTER JOIN tableB tb
ON ta.name = tb.name
WHERE ta.age <> 10
and there where here is optional, by the way

I hate to just copy & paste an answer, but this sort of thing can be found pretty easily if you do a little searching...
An outer join returns rows for one table, even when there are no
matching rows in the other. You specify an outer join in Oracle by
placing a plus sign (+) in parentheses following the column names from
the optional table in your WHERE clause. For example:
SELECT ut.table_name, uc.constraint_name
FROM user_tables ut, user_constraints uc
WHERE ut.table_name = uc.table_name(+);
The (+) after uc.table_name makes the user_constraint table optional.
The query returns all tables, and where there are no corresponding
constraint records, Oracle supplies a null in the constraint name
column.

Related

SQL : left join with additional criteria

I am doing a left outer join :
select * from tableA
left join tableB on tableA.tableB_id = tableB.id
How can I add another search criteria on tableB only for matching tableB records? (like 'and tableB.firstname like 'a_firstname%')
If I do :
select * from tableA
left join tableB on tableA.tableB_id = tableB.id
where tableB.firstname like 'a_firstname%'
it doesn't display records where on tableA.tableB_id = tableB.id doesn't match.
please check this
select * from tableA
left join tableB on tableA.tableB_id = tableB.id and tableB.firstname like 'a_firstname%'

Hive - Where and OR clause error

Hi I am trying to run this query in Hive, but get the error 10249 (Unsupported query expression - only 1 subquery is supported...)
select count(*) from
(
select * from tableA
union all
select * from tableB
) a
where a.field1 in (select fieldA in tableC)
or a.field2 in (select fieldA in tableC)
or a.field3 in (select fieldA in tableC);
Would anybody know how I can write this so that Hive supports this query (works fine in SQL server)
Since you do not need fields from tableC, you can use left semi join instead of in:
select count(*) from
(
select * from tableA
union all
select * from tableB
) a
left semi join tableC c1 on a.field1=c1.fieldA
left semi join tableC c2 on a.field2=c2.fieldA
left semi join tableC c3 on a.field3=c3.fieldA
;
left semi join is half join, the result set contains fields only from one of joined tables, only joined rows returned, similar to inner join but will not create duplicates if right table contains multiple matching rows.
LEFT SEMI JOIN implements the uncorrelated IN/EXISTS subquery semantics in an efficient way.
Covert you sub query in CTE , left join and use or condition in where clause.
IE.
with temp as
(
select * from tableA
union all
select * from tableB
)
select COUNT(a.*)
from temp a left join tableC a1 on a.field1 =a1.fieldA
left join tableC a2 on a.field2 =a2.fieldA
left join tableC a3 on a.field3 =a3.fieldA
where a1.fieldA is not null
or a3.fieldA is not null
or a3.fieldA is not null

Left Join With Regular Joins and Results

Question with left join. I am trying to LEFT JOIN a table that requires other tables to be joined on the initial left joined table. So..
SELECT * FROM tableA
LEFT JOIN tableB
ON tableB.id=tableA.id
JOIN tableC
ON tableC.id=tableB.id
The problem is if I don't left join table C I get no results, and if do left join I get too many results.
What kind of joins should I be using where if tableB join is null, tableC joins will also be null?
What about a subquery ?
SELECT * FROM tableA
LEFT JOIN (SELECT tableB.id FROM tableB
JOIN tableC
ON tableC.id=tableB.id) tableZ
ON tableZ.id=tableA.id
I don't left join table C I get no results, and if do left join I get
too many results
You need to determine what is your driving table and data. In this case, it seems like table A is the driving table and the join from B to C also could be a left join, meaning data from C could be returned even if no matching exists in B.
SELECT * FROM tableA
LEFT JOIN tableB
ON tableB.id=tableA.id
LEFT JOIN tableC
ON tableC.id=tableB.id
if do left join I get too many results
Can you post some sample data to show what you mean by this?
I think you might want this logic:
SELECT *
FROM tableA LEFT JOIN
(tableB JOIN
tableC
ON tableC.id = tableB.id
)
ON tableB.id = tableA.id ;
Normally, with LEFT JOIN you want to chain them, but there are some exceptions.

SQL condition with NULL

I have the following working select:
SELECT
TableA.FullName
FROM
TableA,
TableB
WHERE
TableA.Contact = TableB.Contact
But I have some lines in TableB that have NULL in the TableB.Contact column, and I would like to show it. I tried:
WHERE
(TableA.Contact = TableB.Contact OR TableB.Contact IS NULL)
Without lucky.
You need to use a LEFT JOIN
SELECT
a.FullName, a.Contact, b.Contact
FROM TableA a
LEFT JOIN TableB b ON b.Contact = a.Contact
WHERE
(a.Contact = b.Contact OR b.Contact IS NULL)
The WHERE clause is redundant here - is does the same as the LEFT JOIN
You are using an outdated JOIN format. Try changing it to this:
SELECT column1, column2, column3 FROM
TableA as a
LEFT JOIN TableB as b
ON a.contact = b.contact
Using a left join will pull all records from A regardless if there is a match in B. This is a good explanation of how the various joins work:
http://blog.codinghorror.com/a-visual-explanation-of-sql-joins/
Also, notice that I am specifically pulling only the columns I want instead of *. This is a good habit to get into with SQL.
UPDATE:
After your comments, it seems like you are looking for a FULL OUTER JOIN?
SELECT column1, column2
FROM TableA as a
FULL OUTER JOIN TableB as b
ON a.contact = b.contact
Try changing the join condition:
SELECT *
FROM TableA JOIN
TableB
ON TableA.Contact = TableB.Contact OR
TableA.Contact IS NULL AND TableB.Contact IS NULL;
A left outer join won't do exactly what you want. It keeps all rows in TableA, but doesn't check for matching values.
For performance reasons, the following might work better:
SELECT *
FROM TableA JOIN
TableB
ON TableA.Contact = TableB.Contact
UNION ALL
SELECT *
FROM TableA CROSS JOIN
TableB
WHERE TableA.Contact IS NULL AND TableB.Contact IS NULL;

How to add conditional left or inner join based on parameter in SQL?

I am trying to add conditional left or inner join based on parameter in my select statement.
For example :
I have TableA and TableB, and I have a parameter called #test,
I wanna do something like this :
SELECT * FROM TableA
IF(#test ='')
INNER JOIN TableB
ELSE
LEFT OUTER JOIN TableB
IS that possible in SQL Server 2012 ?
You cannot change the kind of the JOIN based on a parameter, but you can filter out the rows with NULLs in an outer join.
Suppose that TableB is joined to TableA on b.a_id = a.id. Then you could write this query:
SELECT * FROM TableA a
LEFT OUTER JOIN TableB b
ON b.a_id = a.id
WHERE #test != '' OR b.a_id IS NOT NULL
Not exactly (except using dynamic SQL), but you can do this in the where clause:
SELECT *
FROM TableA LEFT OUTER JOIN
TableB
ON . . .
WHERE (#test = '' and TableB.id is not null) or (#test <> '')