I want to delete all the null from table but let suppose i have 200 - 500 coumns so its seems logical to delete them in a dynamic way
i was trying to it something like this while using Information_Schema.Coulmns
delete from tableName
where INFORMATION_SCHEMA.COLUMNS is null
but as the INFORMATION_SCHEMA.COLUMNS can only be use after 'from' im confused how can i do that
Please try something like this (not tested).