Skip to content
Advertisement

Count number of occurrences in SQL

I have a table with the following structure:

and for each row in this table I need to query the column_name in the table_name and do a COUNT(column_name) GROUP BY column_name of the values in there.

Currently I do

Is there any way I can do this in a single query?
Something like

I know the last query is not valid, it’s just an example for what I am looking to to achieve if it’s possible.

LE:

The table that tells me where to look has 2 varchar columns

Ex:

This tells me that now i have too look in columns foo and bar of table logsa and column baz of table testx

Every column in every table has VARCHAR as datattype and i just need to count those that are the same. that’s way i was doing

Advertisement

Answer

If you are working in MySql, you can’t directly use parametrized column names. There is an indirect way of doing this using stored procedures and prepared statements.

some sloppy first-draft code… notice the difference between backticks ` and quotes ‘

Oh ya, don’t forget to call the procedure:

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