如何統計sql語句查詢出來的條數

時間 2021-05-05 17:38:32

1樓:匿名使用者

可以通過count函式來實現。

sqlone:select * from tablename1 where id>5;此語句查詢出來多條記錄,之後看做乙個新的表。

sqltwo:select conut(*) from (select * from tablename1 where id>5) as tablename2;此語句即可查詢出來統計的記錄條數。

備註:以上方法通用於所有的資料統計,如果是單錶查詢,可以直接通過:「select count( *) from tablename1 where id>5"的形式查詢出結果。

2樓:千鳥

i=select  count(1)   from table

語句返回值即為查詢出來的條數.

示例如圖所示:

擴充套件:count() 函式返回匹配指定條件的行數。

語法(1). sql count(column_name) 語法

count(column_name) 函式返回指定列的值的數目(null 不計入):

select count(column_name) from table_namesql

(2). count(*) 語法

count(*) 函式返回表中的記錄數:

select count(*) from table_namesql

(3). count(distinct column_name) 語法

count(distinct column_name) 函式返回指定列的不同值的數目:

select count(distinct column_name) from table_name

3樓:匿名使用者

select conut(*) from tablename

4樓:匿名使用者

*改為count(*)就返回記錄條數了,當然也可以用recordset的count屬性

sql 使用select查詢語句返回結果,如何獲得結果的數量,即行數!

5樓:

我來回答

select distinct a from c where b<>0

select @@rowcount

-- 系統函式 @@rowcount 表示上一句sql的行數。

6樓:我tm不管

select count(distinct a) from c where b<>0

7樓:匿名使用者

select count(a), a from c where b<>0

count是乙個聚合函式,用來統計查詢出來的結果條數的總數,

8樓:匿名使用者

select count(a) from c where b<>0 group by a

9樓:蔣展雷彩靜

select

count(主鍵列名);增加count主鍵可以查出總共多少行。

sql語句 查詢 統計

10樓:匿名使用者

表要告訴我們呀,不要還要我們設計資料庫吧?

11樓:匿名使用者

給表啊``我想查查這個玩玩``

12樓:匿名使用者

1.select *

from student

2.select id,name,age

from student

我有例題你要嗎

13樓:匿名使用者

靠```這麼多東西幫你寫不曉得要死多少腦細胞```

分還是少了點

14樓:

這點分。。。。。。。。。。。。

sql連線查詢語句問題,SQL連線查詢語句問題!!!

簡單寫的話,sql語句就是 select top 10 title date from select title date from new union select title date from res union select title date from affiche as tbltit...

sql查詢語句的問題,sql語句關於查詢的問題

select d,count from select day 訪問時間 d,ip位址,count from 訪問記錄表 where year 訪問時間 2008 and month 訪問時間 5 group by 1,2 一 如果你的資料庫伺服器獲取日期時間欄位的日數 1 31 不是day,請你修改...

SQL查詢語句

select a.b.id bparent id,b.name parent name from s auth a left outer join s auth b on a.parent id b.id where a.menu 0 這是查詢的主 select a.row number over ...