select * from class where cid>4; # cid大於4
select * from class where cid<4; # cid小於4
select * from class where cid!=3; # cid不等於4
select * from class where cid<>3; # cid不等於4(這種更適合)
select * from class where cid<=4; # cid小於等於4
select * from class where cid>=4; # cid大於等於4
select * from class where cid=4 and cname=『1905d』; #兩邊都要對才對
select * from class where cid<2 and cname=『1904a』;
select * from class where cid=3 or cname=『12213』;#一邊對就對
select * from class where cid>2 or cname=『123』;
select * from class where cid between 2 and 4; #2~4的之間
select * from class where cname like 『%1904%』; #是1904的全部
select * from class where cname like 『%e』; #結尾為e的
select * from class where cname like 『2%』; #開頭為2的
select * from class where cid in(1,2,3,4); #選定1,2,3,4
select * from class order by cid desc; #從大到小 降序
select * from class order by cid asc; #從小到大 公升序
select * from class limit 0,4; #取兩條資料
資料庫查詢效率,小白速來
為什麼有的專案,前段網頁顯示資料庫中的資料內容這麼緩慢?原因 1 後台資料庫中的資料過多,沒做資料優化導致後台查詢資料慢 2 前端資料請求 解析 展示過程處理不當 3 網路原因 如何後台資料優化,提高資料庫查詢速度?1 快取,在持久層或持久層之上做快取。e.g.使用ehcache快取,這個一般用於持...
資料庫分頁查詢方法
在這裡主要講解一下 mysql sqlserver2000 及sqlserver2005 和orcale三種 資料庫實現 分頁 查詢的方法。可能會有人說這些網上都有,但我的主要目的是把這些知識通過我實際的應用總結歸納一下,以方便大家查詢使用。下面就分別給大家介紹 講解一下三種資料庫實現分頁查詢的方法...
資料庫分頁查詢方法
在這裡主要講解一下mysql sqlserver2000 及sqlserver2005 和orcale三種資料庫實現分頁查詢的方法。您可能感興趣的文章 oracle,mysql,sqlserver三種資料庫的分頁查詢的例項 sql server 分頁查詢通用儲存過程 只做分頁查詢用 mysql分頁原...