deleting a record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how do i delete a record in a query that start with the letter "t" any
sugestions would be appreciated
 
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*"
 
Back
Top