select * from 表名 limit 0,1;
或者 select * from 表名 limit 1;
其中0代表從第一條資料開始;
1代表往後去幾條資料;
如果想獲取某錶中最大最小資料或者是第一條、最後一條、最新一條資料,使用limit也能實現;
很簡單,最小就是正序(asc)取第乙個,最大就是倒序(desc)取第乙個;
例如:select * from emo order by id desc limit 1;
取id是最後的乙個員工
使用limit分頁:
select * from 表名 limit 0,5;
下標從0開始是第乙個,每5條記錄為一頁!
mongodb 分組 得到第一條資料
業務邏輯 控制器每分鐘上報採集資料,現需得到每個控制器的每種採集資料的最近一條資料 效能比較低。分組,得到每個控制器每種採集型別的離當前最近的一條記錄 private static void group if curr.createdate result.createdate string fina...
LINQ分組取出第一條資料
person1 id 1,name test1 person2 id 1,name test1 person3 id 2,name test2 以上list如果直接使用distinct方法進行過濾,仍然返回3條資料,而需要的結果是2條資料。下面給出解這個問題的方法 方法1 distinct 方法中使...
SQL語句分組獲取記錄的第一條資料
使用northwind 資料庫 首先查詢employees表 查詢結果 city列裡面只有5個城市 使用row number over partition by col1 order by col2 先進行分組 注 根據col1分組,在分組內部根據 col2排序,而此函式計算的值就表示每組內部排序後...