I have a database table [id,first,second,third] with a lot of entries and I would like to delete all the entries when [first,second,third] are empt
[id,first,second,third]
[first,second,third]
Remove the star
$sql= "delete from mytable where first='' or second='' or third=''";
You don't need that with the delete statement
delete