Dec 27, 2002 #1 rhonda11 Technical User Nov 4, 2002 96 US I need to run a query that'll show me all records accept anything that start with "AES". Can somebody help me on this? Thanks in advance.
I need to run a query that'll show me all records accept anything that start with "AES". Can somebody help me on this? Thanks in advance.
Dec 27, 2002 #2 mwolf00 Programmer Nov 5, 2001 4,177 US SELECT * FROM myTable WHERE left(field1,3) <> "AES" Get the Best Answers! faq333-2924 Merry Christmas! mikewolf@tst-us.com [santa2] Upvote 0 Downvote
SELECT * FROM myTable WHERE left(field1,3) <> "AES" Get the Best Answers! faq333-2924 Merry Christmas! mikewolf@tst-us.com [santa2]
Dec 27, 2002 #3 Creepers Programmer Nov 11, 2002 116 US Try in your Where clause Not Like "*AES*" Upvote 0 Downvote
Dec 27, 2002 #4 chrissie1 Programmer Aug 12, 2002 4,517 BE something like this should do it SELECT Table1.columnname FROM Table1 WHERE (((Table1.columnname) NOt Like "AES*") Upvote 0 Downvote
something like this should do it SELECT Table1.columnname FROM Table1 WHERE (((Table1.columnname) NOt Like "AES*")
Dec 27, 2002 #5 chrissie1 Programmer Aug 12, 2002 4,517 BE I see we all tried to help at the same time Upvote 0 Downvote