I have an SQL statement that works
SELECT * FROM eventsTable WHERE columnName=\'Business\'
I want to add this as a subquery...
Do you want to get the number of rows?
SELECT columnName, COUNT(*) AS row_count FROM eventsTable WHERE columnName = 'Business' GROUP BY columnName