Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
ElCapitan
Starting Member
28 Posts |
Posted - 2009-02-02 : 06:12:40
|
Hi all,Is it possible to use EXIST like IN?ExampleSELECT * FROM tbl WHERE tbl.id IN (1,2,3)Can it be written as...SELECT * FROM tbl WHERE tbl.id EXIST (1,2,3)I expect not but I might not be writing it correctly. Thanks for your help. |
|
bklr
Master Smack Fu Yak Hacker
1693 Posts |
Posted - 2009-02-02 : 06:42:46
|
no u can't write exist as in |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
|
ElCapitan
Starting Member
28 Posts |
Posted - 2009-02-02 : 07:25:20
|
Ok, I thought as much. Thanks guys. |
|
|
|
|
|