I got a database named accounts
and account
table inside of this database, Also I got the database named players
and player
table inside of this database.
How can I get a rows count of this two tables in one query?
我试图这样做:
SELECT
SUM(`account`.`account`.`id`) AS accounts ,
SUM(`player`.`player`) AS players ;
但它没有工作。