I need to write a query that will delete this string float:right; from inside a column called description.
This database is in BlueHost and no mater what query I try, Bluehost is giving me this error:
#1064 - You have an error in your SQL syntax;
check the manual that corresponds to your
MySQL server version for the right syntax to use near 'field like
'% float:right%' at line 1
This is the last query I tried:
DELETE FROM tablename WHERE `description` field like '% float:right%'
What am I doing wrong?