1. 程式人生 > >Mysql資料庫查詢符合where條件的某幾條結果sql語句

Mysql資料庫查詢符合where條件的某幾條結果sql語句

select * from tbl_files where p_id = ?  and file_type = ?  order by time desc limit ?,? 

其中,where、order by、limit 的順序必須是where  ...  order by .... limit 3,9.

3和9分別代表查詢從第3條開始的 9條資料。