select * from table where id=
(
select max(id) from table where id not in
(select max(id) from table)
)
sql 语句读取第二大的语句
最新推荐文章于 2024-05-25 11:30:22 发布
select * from table where id=
(
select max(id) from table where id not in
(select max(id) from table)
)