Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query question

Status
Not open for further replies.

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.
 
SELECT * FROM myTable WHERE left(field1,3) <> &quot;AES&quot; Get the Best Answers! faq333-2924
Merry Christmas!
mikewolf@tst-us.com
[angel][santa][elf][reindeer][santa2]
 
something like this should do it


SELECT Table1.columnname
FROM Table1
WHERE (((Table1.columnname) NOt Like &quot;AES*&quot;))
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top