Microsoft
Software
Hardware
Network
Question : MySQL Query Where Not Exists
Given table1 with rows id,type,name and table2 with rows id,priority,level
Some of the id's in table2 are also in table1, but in this case, I want to select all id's from table1 that do NOT have a matching id in table2.
What's the simplest way to build this query?
Answer : MySQL Query Where Not Exists
this trick will do;
1: 2: 3: 4: 5:
select t1. from table1 t1 LEFT JOIN table2 t2 ON t1.id = t2.id WHERE t2.id IS NULL
Random Solutions
Globally Hide Mouse after Inactive without using constantly running Timer Interval
how to add swap partition to exsting swap in redhat linux
Ubuntu svn: Network connection closed unexpectedly
Matching Cell Items in Excel
DST Patch not working?
visual studio 2005 express
asp.net, c#, drop down list error
Info@... users Not receiving email
HP dl360 G6 Raid Driver for Windows 2008 64-bit
More Macro Short Questions