求Delphi中資料庫記錄統計方法

2022-04-15 04:11:04 字數 748 閱讀 2766

求delphi中資料庫記錄統計方法. delphi / windows sdk/api

我使用了bde來連線資料庫,想統計一下資料庫表中的記錄和滿足一定條件的記錄,語句怎麼寫哦~~~(我使用了query,table,database,dbgrid,datasource)

方法一:(query.recordcount)  

with   query   do  

begin  

close;  

sql.clear;  

sql.text   :=   'select   *   from   表名';   //所有記錄  

open;  

showmessage(inttostr(recordcount));//顯示記錄數  

end;  

如果把sql字串換成'select   *   from   表名   where   條件'   那麼recordcount返回符合條件的記錄數  

方法二:  

query.sql.text   :=   'select   count(*)   from   表名   where   條件';  

~~~~~~~~~~可選

樓上的方式就是統計的方式,通常你要查一些記錄,就列出條件寫出sql的語言.而當你想知道這條語句有多少滿足條件的記錄的時候.只需將所有的原來的字段列表換成   count(*)   其它不變.查出的就一條記錄乙個字段就是符合條件的記錄.

多謝你啦~~~

delphi資料庫開發之資料記錄修改

ado.close ado.sql.clear ado.sql.add update userinfo set 姓名 a,性別 b,年齡 c,學歷 d where id e ado.parameters.parambyname a value trim edit2.text ado.paramete...

delphi中的資料庫小結

adconnection1.connectionstring provider msdaora.1 password hundsun user id hs aas data source aas hydevpub 設定資料庫連線引數 adooconnection1.commandtimeout 30...

資料庫中插入記錄

把一張表中的資料插入資料庫中 現在,我們將建立乙個html表單 通過它我們可以向 person 表中加入新的記錄。下面演示這個html表單 在上述案例中,當乙個使用者點選html表單中的 提交submit 按鈕後,表單中的資料會傳送到 insert.php insert.php 檔案與資料庫建立連線...