[VIEWED 7251
TIMES]
|
SAVE! for ease of future access.
|
|
|
NepaliBhai
Please log in to subscribe to NepaliBhai's postings.
Posted on 01-15-14 1:32
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Please help me.
I have two tables.
First table has rows with some colums
Second table has rows with same colums and some other columns
I need to get rows that exist in table one but not in table two.
Please see the picture
I could not upload picture
Last edited: 15-Jan-14 01:33 PM
|
|
|
|
DEVN
Please log in to subscribe to DEVN's postings.
Posted on 01-15-14 2:22
PM [Snapshot: 63]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
http://www.techonthenet.com/sql/joins.php Please review the following link. This might help you for future reference too.
|
|
|
mvc
Please log in to subscribe to mvc's postings.
Posted on 01-15-14 2:29
PM [Snapshot: 58]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
This really depends on the Relation between two tables. This could be the syntax for two tables containing same column say student_Id. select * from table one where tableone.student_Id NOT IN ( Select tabletwo.student_ID from table two) ;
|
|
|
nayayana
Please log in to subscribe to nayayana's postings.
Posted on 01-15-14 3:31
PM [Snapshot: 151]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
|
|
|
STUPIDA
Please log in to subscribe to STUPIDA's postings.
Posted on 01-15-14 3:34
PM [Snapshot: 154]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
mvc, That's not the proper way to do it. I know it works. But SQL query is not optimized in that Sub-query............... Here it is Select [Column lists...............] FROM table1 a LEFT JOIN table2 b ON a.SameColumnName = b.SameColumnName WHERE b.SameColumnName IS NULL
|
|
|
NepaliBhai
Please log in to subscribe to NepaliBhai's postings.
Posted on 01-15-14 3:53
PM [Snapshot: 182]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
|
|
|