ORACLE 的select count(*) from table;

项数少的表查询的 总行数是正确的 项数多的表查询 十多条项目 查出来1000多条 这是为什么?
问题已解决 ..我用pl/sql 查询的时候 操作没弄对
最新回答
杯别

2024-11-25 09:11:56

Oracle中select count(*) from table是统计表的行数。

如:

select count(*) from emp;

查询结果:

其中查询结果中的15代表emp表中共有15行记录。

满载树色的飞车

2024-11-25 14:42:39

--假设表名为sales (销售)
--,含有字段product (产品) ;

select product , count(*)
from sales
group by product
;

--如果还有流水号id,可以:
select product
, count(*) --不去重
, count(distinct id) --去重
from sales
group by product;