查看第一条:
SELECT
group_concat(id ORDER BY `create_time` DESC)
FROM
`user`
GROUP BY
user_code
select top 1 * from book 不对,因为mysql里没有top这种写法,它用limit。
扩展资料:1、查看最后一条
mysql:
select * from table order by id DESC limit 1
oracle:
select * from emp where id in (select max(id) from emp)
2、查询前n行记录
select * from table1 limit 0,n或select * from table1 limit n
3、查询后n行记录
select * from table1 order by id desc dlimit n;//倒序排序,取前n行,id为自增形式
select top 1 * from book 不对,因为mysql里没有top这种写法,它用limit查第一条 select * from book limit 1
select * from book limit 0,30 后面的limit 0,30 是查询前30条记录
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)