Using Delete Query

S

SpIkE

How can I use a delte query to delete all records that begin with a certain
letter?
 
J

Jason Lepack

How can I use a delte query to delete all records that begin with a certain
letter?

yes. Backup your database before you even think of testing this.

DELETE *
FROM yourTable
WHERE [FieldName] LIKE "'" & [Enter a Letter] & "*'"

Cheers,
Jason Lepack
 
Top