I have a large mySQL database and I want to remove every record that is empty, not null in a certain column. What is the best way to do write a SQL query for this?
delete from table_name where column=''
delete from table_name where column=''
0 comments:
Post a Comment