Skip to content
Advertisement

SELECT statement to remove empty columns from resultset with variable data

I’ve got a table that has been imported from a CSV as a midstep to gather data into other tables. All columns in this table may be empty but as long as one column has data, is a valid row. Because of this, there may be full rows with empty data, that are not valid to take into consideration. Here’s a (simplified) example of such a table:

NOTE: Please take into consideration the above table/data comes from an external source and is not modifiable, it has no primary key either. It is just imported as is in MySQL. I won’t get NULL values as all columns are VARCHAR.

I use the following SELECT statement to get this same table but without full empty rows this way:

What do I need to do to remove columns whose rows are all empty? In this example, I need the table as above but without the empty column title.

As this data is dynamic, there may be times when another column or columns will be empty and I cannot know beforehand which one will be that way.

Advertisement

Answer

Using @GMB answer as a base, I added to the prepared statement a dynamic way to check if any of the verified fields are empty in the where clause, thus cutting out the full empty rows, like this:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement