oracle count(1) 返回java 什么类型?_Oracle 中count(1) 和count(*) 的区别

  • Post author:
  • Post category:java


SQL> create table test

2 (

3 ename varchar2(10),

4 sal number(4)

5 );

表已创建。

SQL> insert into test values(‘fxe1’,90);

已创建 1 行。

SQL> insert into test(ename) values(‘fxe2’);

已创建 1 行。

SQL> insert into test(ename) values(‘fxe3’);

已创建 1 行。

SQL> insert into test(ename) values(‘fxe4’);

已创建 1 行。

SQL> insert into test values(‘fxe5’,80);

已创建 1 行。

SQL> insert into test values(‘fxe6’,80);

已创建 1 行。

SQL> select * from test;

ENAME SAL

———- ———-

fxe1 90

fxe2

fxe3

fxe4

fxe5 80

fxe6 80

SQL> select count(*) from test;

COUNT(*)

———-

6

SQL> select count(sal) from test;

COUNT(SAL)

———-

3

SQL> select count(distinct sal) from test;

COUNT(DISTINCTSAL)

——————

2

SQL> select distinct sal from test;

SAL

———-

80

90



版权声明:本文为weixin_39683734原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。