获取单个表的行数 使用count(*)或者count(1) SELECT count(1) AS count FROM table_name; 执行结果 获取两个表的行数 使用union组合每个select查询的结果集 例如,要在单个查询中获取customers和orders表的行数 SELECT 'customers' tablename, COUNT(1) rows FROM customers UNION SELECT 'orders' tablename, COUNT(1) rows F…