To delete all the null values in Sql, DELETE statement combined with WHERE clause will work.
Here’s the query that you can use:
DELETE FROM table_name
WHERE column_name IS NULL;
For multiple columns:
DELETE FROM table_name
WHERE column1 IS NULL OR column2 IS NULL;