Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
mysql テーブルから 3 行目を選択したい。
注: 表は頻繁に更新されます。常に 1 列目から 3 行目を選択する方法。
SELECT * FROM ( SELECT * FROM emps ORDER BY empid LIMIT 3 ) AS T ORDER BY empid DESC LIMIT 1
これを試して::
Select * from tableA order by empid desc limit 3,1
LIMIT 句のオフセットはゼロ ベースです。これを試して:
SELECT * FROM emps ORDER BY empid LIMIT 2, 1
SQL フィドルのデモ