hi,
how to match retrieve the unmatched records from 2 tables
in which we dont have any primary key. example : table1 has
1,2,3,4,5 and table2 has 1,2,3,4,5,6,7,8,9,10 and i want
the numbers from 6 to 10 to be displayed and should not
come as null. i need the numbers. please reply as soon as
possible.
Answers were Sorted based on User's Feedback
Answer / gangadhar
select * from table2 where id not in ( select id from
table1)
Is This Answer Correct ? | 18 Yes | 0 No |
Answer / debi
(select * from table2)
minus
(select * from table1)
Is This Answer Correct ? | 6 Yes | 6 No |
Answer / newbie
SELECT * from Table2
EXCEPT
SELECT * FROM Table1
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / madhu sudhan g
Hiii
Its very simple to get the records that doesn't match lets
table1 is No1 and having A column values 1,2,3,4,5 and Table2
is No2 having column B values 1,2,3,4,5,6,7,8,9,10
Now Query is
select B from NO2 where B NOT IN(select A from NO1)
Is This Answer Correct ? | 0 Yes | 0 No |
How to find the list of fixed hard drive and free space on server?
WHICH INDEX IS FAST CLUSTER AND NON CLUSTER INDEX
4 Answers CarrizalSoft Technologies, L&T,
How to name query output columns in ms sql server?
What is self contained sub query?
Explain couple pf features of SQL server
What are indexes in ms sql server?
What are user-defined functions (udfs) in sql server?
How do I partition a table in sql server?
Is sql server difficult to learn?
How can we get count of the number of records in a table?
what is isolation level at dead lock?
How to transfer data from a cursor to variables with a "fetch" statement?