Hi All,
I have a table where I need to delete all the records that do not meet a criteria.
The table has a field named "Flight" and I want to delete all the records that do not have "FR" in the content of the field "Flight"
I am using:
$sql = mysql_query("DELETE* FROM RemoveAllButFR WHERE Flight NOT LIKE 'FR%'");
This do not work but from all that I have read it should. Can anyone see where I am going wrong.