sql - i have two table find out only mismatch id -



sql - i have two table find out only mismatch id -

table 1:

id 1 2 3 5 6

table 2:

id 2 3 7

i want mismatch id table 1 result should 1,5,6.

please help on this, in advance.

try this:

select * table1 id not in (select id table2)

sql

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -