我想从 SQL 查询中提取表名。
SELECT col1, col2, count(1) as count_all, FROM tbl1, tbl2 where condition order by column
我要结果["tbl1", "tbl2"]
不必查询多个表。在这种情况下,查询将是
SELECT col1, col2, count(1) as count_all, FROM tbl1 where condition order by column
和预期的结果["tbl1"]
提前致谢!