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]
You don't need * in this statement.
*
$sql= "delete from mytable where first='' or second='' or third=''";