1.select * from table group by condition;根據group by後的條件去對查詢出來的資料進行分組。
2.select * from table group by condition having condition;從分組出來的資料中再去篩選展示。
3.select * from table limit start,length;從第start項開始查詢length個長度的資料。
1.select * from table group by condition;根據group by後的條件去對查詢出來的資料進行分組。
2.select * from table group by condition having condition;從分組出來的資料中再去篩選展示。
3.select * from table limit start,length;從第start項開始查詢length個長度的資料。