Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
what do you mean by whose value is not null? table have row where this column is not null? – Roman Pekar Oct 20 '12 at 16:15
Yes, that's what I mean – user765368 Oct 20 '12 at 16:16
I can do SQL server query but not mysql :) – Roman Pekar Oct 20 '12 at 16:20

closed as too localized by Leniel Macaferi, vol7ron, bmargulies, Jocelyn, David Stratton Oct 21 '12 at 3:04

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.

2 Answers

Here's a thing I've knocked up in T-SQL. I guess MySQL won't be far off.

declare @tableName sysname = 'myTable' --table name
, @colPrefix nvarchar(256) = 'xyz_' --leave as null or blank if you want all columns
, @sql nvarchar(max)

select @sql = isnull(@sql + ',', 'select') + ' sum(case when ' + quotename(c.name) + ' is null then 0 else 1 end) '  + quotename(c.name) 
from sys.columns c 
where c.object_id = object_id(@tableName)
and c.name like ISNULL(@colPrefix,'') + '%'
set @sql = @sql + ', count(*) [RowCount] from ' + quotename(@tableName)

exec (@sql)

Or if you're not interested in which columns the non-nulls are in & just want a total:

declare @tableName sysname = 'myTable' --table name
, @colPrefix nvarchar(256) = 'xyz_' --leave as null or blank if you want all columns
, @sql nvarchar(max)

select @sql = isnull(@sql + ' + ', 'select') + ' sum(case when ' + quotename(c.name) + ' is null then 0 else 1 end) '  
from sys.columns c 
where c.object_id = object_id(@tableName)
and c.name like ISNULL(@colPrefix,'') + '%'
set @sql = @sql + ' NonNullCount, count(*) [RowCount] from ' + quotename(@tableName)

exec (@sql)
share|improve this answer

...where column12 like 'xyz_%' and column1212 is not null

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.