MySQL Delete Query With Join Syntax
DELETE $table1 FROM $table1 LEFT JOIN $table2 ON $table1.fieldId = $table2.fieldId WHERE $table2.fieldId == NULL ;
Comments Off
DELETE $table1 FROM $table1 LEFT JOIN $table2 ON $table1.fieldId = $table2.fieldId WHERE $table2.fieldId == NULL ;
Comments Off