Hello,
Suppose I have a table with this format and data in it:
A B C D
X X
X X
X X X
X X
I would like to create a query that will get the results from the table but without columns which are empty.
In the example above, the query will result only in fields A,C and D since B doesn't contain any data.
Also, I will be running this query on tables with different columns structure so the columns names cannot appear in the query.
Suppose I have a table with this format and data in it:
A B C D
X X
X X
X X X
X X
I would like to create a query that will get the results from the table but without columns which are empty.
In the example above, the query will result only in fields A,C and D since B doesn't contain any data.
Also, I will be running this query on tables with different columns structure so the columns names cannot appear in the query.