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*"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top