I have the following procedure where I pass the name of a column and it counts the records of that column.
exec psGraficoestatistica 'Email'
It returns a column with the name EMAIL
and a single line with the number of occurrences.
I need to merge the result of several procedures like this into a single table. Is it possible?
exec psGraficoestatistica 'Email'
exec psGraficoestatistica 'Blogs'
exec psGraficoestatistica 'Google'