i have 3 tables in sql-server 2008
table A , table B , Table C
i need to count all 3 tables and see it in one query line, like this:
A B C
30 40 12
i tried this: select count(*) from A,select count(*) from B,select count(*) from C
but i got error
thank's in advance