Re: Removing rows from table
Quote:
Originally posted by xsiteu
I have tried the following:
SELECT * FROM `tblTgp` WHERE `date` LIKE '2003%'
will return the rows I would like to delete but
DELETE * FROM `tblTgp` WHERE `date` LIKE '2003%'
|
DELETE tblTgp WHERE date LIKE '2003%'
Entreri.
|