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



hi, how to match retrieve the unmatched records from 2 tables in which we dont have any primary..

Answer / gangadhar

select * from table2 where id not in ( select id from
table1)

Is This Answer Correct ?    18 Yes 0 No

hi, how to match retrieve the unmatched records from 2 tables in which we dont have any primary..

Answer / debi

(select * from table2)
minus
(select * from table1)

Is This Answer Correct ?    6 Yes 6 No

hi, how to match retrieve the unmatched records from 2 tables in which we dont have any primary..

Answer / newbie

SELECT * from Table2
EXCEPT
SELECT * FROM Table1

Is This Answer Correct ?    1 Yes 1 No

hi, how to match retrieve the unmatched records from 2 tables in which we dont have any primary..

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

Post New Answer

More SQL Server Interview Questions

How can you ensure that the database and sql server based application perform well?

1 Answers  


How data can be copied from one table to another table?

1 Answers  


Define tool Manage Statistics in SQL Server 2000 query ?

1 Answers   NA,


Explain the different types of joins?

1 Answers  


Is INSTEAD OF trigger directly applicable to Table ?

1 Answers  


WHAT OPERATOR PERFORMS PATTERN MATCHING?

2 Answers   CarrizalSoft Technologies, CTS,


How do I run sql server 2014?

1 Answers  


What are the aggregate and scalar functions?

1 Answers  


What is triggers and its types?

1 Answers  


what are isolation levels? : Sql server database administration

1 Answers  


Hi, I Created 3 Tables Person(PersID[prkey],Name,Email,Password), Project(ProjName,ProjID[prkey],ProjLeader,ProjManager) & ProjectInvolvement(EntryDate,ProjID[frkey],PersID[frkey],ProjDuration). For this how can i INSERT,UPDATE & DELETE Through PROCEDURE? Please Post the Answer for me. Desai.

1 Answers  


How to remove duplicate rows from table except one?

0 Answers  


Categories