I would like to remove rows table1.name from table where table1.name starts with 'product-'
mysql_request("DELETE FROM table1 WHERE substr(name, 0, 8) = 'product-'");
It's very rediculous but this query doesn't work at all. Any ideas how to make it?
`name` LIKE 'product-%'? – hjpotter92 Sep 27 '12 at 7:29