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 foo1 where ID = '00123244552000258') + (select count(*) from foo2 where ID = '00123244552000258') + (select count(*) from foo3 where ID = '00123244552000258')
This is an easy way.