How do you combine multiple select count(*) from different table into one return?
I have a similar sitiuation as this post
but I want one return.
I t
select (select count(*) from foo) as foo , (select count(*) from bar) as bar , ...