Click here to Skip to main content
16,016,229 members
Home / Discussions / Database
   

Database

 
GeneralRe: Identity Seed/Increment Customize Pin
Jon Hulatt6-Sep-02 3:55
Jon Hulatt6-Sep-02 3:55 
GeneralLEFT OUTER JOIN leaves rows Pin
Knappen4-Sep-02 10:18
Knappen4-Sep-02 10:18 
Generala sql query question Pin
freeworldbird4-Sep-02 7:54
freeworldbird4-Sep-02 7:54 
GeneralRe: a sql query question Pin
Mazdak4-Sep-02 7:59
Mazdak4-Sep-02 7:59 
GeneralRe: a sql query question Pin
freeworldbird4-Sep-02 8:07
freeworldbird4-Sep-02 8:07 
GeneralRe: a sql query question Pin
Mazdak4-Sep-02 23:24
Mazdak4-Sep-02 23:24 
GeneralRe: a sql query question Pin
Nick Parker4-Sep-02 9:31
protectorNick Parker4-Sep-02 9:31 
Not exactly sure what it is you are trying to find, if you only want to find the entries in one table that aren't in another then you simply need to do an outer join against the table like such:

SELECT * FROM table1 t1 LEFT OUTER JOIN table2 t2 ON t1.a = t2.a


This should grab everything that is in table1 that is not in table2 where there is a relation between t1 and t2 on field a. Does this help, or are you trying to do something else?

Nick Parker


GeneralRe: a sql query question Pin
freeworldbird4-Sep-02 16:35
freeworldbird4-Sep-02 16:35 
GeneralRe: a sql query question Pin
freeworldbird5-Sep-02 16:08
freeworldbird5-Sep-02 16:08 
GeneralDatetime in SQL server<>ADO Pin
Rulle3-Sep-02 23:01
Rulle3-Sep-02 23:01 
GeneralRe: Datetime in SQL server<>ADO Pin
Jon Hulatt4-Sep-02 5:46
Jon Hulatt4-Sep-02 5:46 
GeneralRe: Datetime in SQL server<>ADO Pin
Rulle4-Sep-02 20:54
Rulle4-Sep-02 20:54 
Questionplz tell how to get rid of database error? Pin
drmzunlimited3-Sep-02 11:22
drmzunlimited3-Sep-02 11:22 
AnswerRe: plz tell how to get rid of database error? Pin
notadood4-Sep-02 4:14
notadood4-Sep-02 4:14 
GeneralSQL -> DOTNET data types Pin
Ray Cassick3-Sep-02 9:21
Ray Cassick3-Sep-02 9:21 
GeneralRe: SQL -> DOTNET data types Pin
notadood3-Sep-02 10:25
notadood3-Sep-02 10:25 
GeneralRe: SQL -> DOTNET data types Pin
SimonS6-Sep-02 19:29
SimonS6-Sep-02 19:29 
GeneralLocks: How-to Pin
Le centriste3-Sep-02 5:56
Le centriste3-Sep-02 5:56 
GeneralRe: Locks: How-to Pin
Joao Vaz3-Sep-02 6:32
Joao Vaz3-Sep-02 6:32 
GeneralADO.NET and DSN Pin
Ray Cassick2-Sep-02 18:44
Ray Cassick2-Sep-02 18:44 
GeneralRe: ADO.NET and DSN Pin
notadood3-Sep-02 4:30
notadood3-Sep-02 4:30 
GeneralRe: ADO.NET and DSN Pin
Ray Cassick3-Sep-02 6:14
Ray Cassick3-Sep-02 6:14 
GeneralRe: ADO.NET and DSN Pin
Paul Riley3-Sep-02 7:20
Paul Riley3-Sep-02 7:20 
GeneralRe: ADO.NET and DSN Pin
Ray Cassick3-Sep-02 8:07
Ray Cassick3-Sep-02 8:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.