关于sql语句问题:我想取出数据库的前10行,(mysql数据库)用select top 10 * from product; 却提示出!
product是表明,提示:youhaveanerrorinyoursqlsynatax;checkthemanualthatcorrespondstoyourmysql...
product 是表明,提示:you have an error in your sql synatax; check the manual that corresponds to your mysql server version from the right synatax to use near '10 * from product ' at line 1!!!!!! 我的是5.1版本的 请各位分析一下我怎么错了,写出正确语句,小弟先谢谢了!!!!
展开
2011-04-10
展开全部
mysql是这样的:
select * from product limit 0,10;
你这个是sql server的
不同数据库之间会有差别的,oracle又不一样
select * from product limit 0,10;
你这个是sql server的
不同数据库之间会有差别的,oracle又不一样
追问
我想查一下类似分页的查询 如 :select * from table limit 10 where id not in (select id from table limit 20);也就是想查询第三页的内容,每页显示10条的那种,但mysql语句提示错误,那该怎么写啊??????
展开全部
select * from table limit 10
追问
我想查一下类似分页的查询 如 :select * from table limit 10 where id not in (select id from table limit 20);也就是想查询第三页的内容,每页显示10条的那种,但mysql语句提示错误,那该怎么写啊??????
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
limit 在where 条件后面。
select * from table where id not in ( select id from table table limit 20) limit 10;
select * from table where id not in ( select id from table table limit 20) limit 10;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询