G Guest Apr 8, 2005 #1 how do i delete a record in a query that start with the letter "t" any sugestions would be appreciated
how do i delete a record in a query that start with the letter "t" any sugestions would be appreciated
M MGFoster Apr 8, 2005 #2 briannadorsey said: how do i delete a record in a query that start with the letter "t" any sugestions would be appreciated Click to expand... DELETE * FROM table_name WHERE column_name Like "t*"
briannadorsey said: how do i delete a record in a query that start with the letter "t" any sugestions would be appreciated Click to expand... DELETE * FROM table_name WHERE column_name Like "t*"