3 (E teller)使用SQL語句

2021-04-13 04:35:51 字數 400 閱讀 2375

1-關於使用sql語句

string sql = "select distinct regisgerjusticer from dun_case_civil order by regisgerjusticer";

list = getcommonmanager().executesqlquery(sql); 

sql=select distinct regisgerjusticer from dun_case_civil order by regisgerjusticer

dun_case_civil 是真實的表名

表裡regisgerjusticer欄位有兩條記錄,但size=1只查出了一條,因為regisgerjusticer欄位的值相同。

executesqlquery 返回的是list

sql語句分頁(3)

我們在編寫mis系統和web應用程式等系統時,都涉及到與資料庫的互動,如果資料庫中資料量很大的話,一次檢索所有的記錄,會占用系統很大的資源,因此我們常常採用,需要多少資料就只從資料庫中取多少條記錄,即採用分頁語句。根據自己使用過的內容,把常見資料庫sql server,oracle和my sql的分...

sql語句使用

1.需求 按照查詢順序條件的排列順序返回 要點 where.in select from t device where guid in guid1 guid2 order by field guid,guid1 guid2 2.需求 替換資料表中的字段中相同資料 要點 replace函式 語法 re...

sql語句3 增刪改

ps 以dept emp表為例 1 新增資料 insert into表名稱 列名1,列名2,values 值1,值2,insert into dept deptid deptname deptnum deptdesc values null,技術部 20,技術 主鍵deptid為自增列,故無需新增具...