Delete

D

Diane

How do I delete all records in a query where the description starts with the letter R?
 
P

Perry

DELETE * FROM [MyTable] WHERE Left([Description],1)="R"

Adapt above code to match yr situation.

Krgrds,
Perry

Diane said:
How do I delete all records in a query where the description starts with
the letter R?
 
Top