G Guest Oct 25, 2006 #1 In a query, how do i delete records that the description begin with the letter "s"?
G Guest Oct 25, 2006 #2 Hi Mystic, If you really want to delete them, you could use a delete query like this: delete * from TABLENAME where ucase(left(FIELDNAME, 1)) = "S" if you just don't want to see them in your query results, just have something like this: select * from TABLENAME where ucase(left(FIELDNAME, 1)) <> "S" Hope that helps. Damian.
Hi Mystic, If you really want to delete them, you could use a delete query like this: delete * from TABLENAME where ucase(left(FIELDNAME, 1)) = "S" if you just don't want to see them in your query results, just have something like this: select * from TABLENAME where ucase(left(FIELDNAME, 1)) <> "S" Hope that helps. Damian.
G Granny Spitz via AccessMonster.com Oct 25, 2006 #3 Mystic said: In a query, how do i delete records that the description begin with the letter "s"? Click to expand... DELETE * FROM tablename WHERE ([description] LIKE "s*");
Mystic said: In a query, how do i delete records that the description begin with the letter "s"? Click to expand... DELETE * FROM tablename WHERE ([description] LIKE "s*");