How do I construct an SQL query that does the following
Return the number of fields (or columns) in a table that start with "xyz_"
and whose value is not null
Thanks in advance
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Here's a thing I've knocked up in T-SQL. I guess MySQL won't be far off.
Or if you're not interested in which columns the non-nulls are in & just want a total:
|
|||
|
|