deleting a record

B

briannadorsey

how do i delete a record in a query that start with the letter "t" any
sugestions would be appreciated
 
M

MGFoster

briannadorsey said:
how do i delete a record in a query that start with the letter "t" any
sugestions would be appreciated

DELETE *
FROM table_name
WHERE column_name Like "t*"
 
Top