有人可以向我解释为什么以下查询无效吗?我正在针对 Oracle 10g 数据库运行此查询。
select count(test.*) from my_table test;
我收到以下错误:ORA-01747: invalid user.table.column, table.column, or column specification
但是,以下两个查询是有效的。
select count(test.column) from my_table test;
select test.* from my_table test;