select top 10 * from property_sell ordey by PropertyID desc; 这条SQL语句报这个错

YouhaveanerrorinyourSQLsyntax;checkthemanualthatcorrespondstoyourMySQLserverversionfo... You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '10 * from property_sell ordey by PropertyID' at line 1 请大侠们帮忙看下,我要查询最新的十字记录,但是出错了咯
select top (10) * from property_sell order by PropertyID desc; 是ORDER不是ordey,报错还是一样的
展开
 我来答
hit_lubin
2011-05-03 · TA获得超过7889个赞
知道大有可为答主
回答量:1554
采纳率:100%
帮助的人:2027万
展开全部
MYSQL的前N行选择是不能使用TOP N这样的形式的。
select top (10) * from property_sell order by PropertyID desc
另外,即使是SQLSERVER数据库,您这个语法也有错误
10是不能加引号的select top 10 * from property_sell order by PropertyID desc
以上才是正确的SQLSERVER语法。
MYSQL语法:select * from property_sell order by propertyid desc limit 0, 10这样的形式
还有ORACLE的语法:SELECT * FROM TABLE WHERE ROWNUM <= 10
滑过的板砖
2011-05-03 · TA获得超过270个赞
知道小有建树答主
回答量:305
采纳率:100%
帮助的人:187万
展开全部
select top (10) t.* from property_sell t order by PropertyID desc;
这样就OK了
追问
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.* from property_sell t order by PropertyID desc' at line 1
用你的语句报这个错哦
追答
select top (10), t.* from property_sell t order by PropertyID desc;
这样好了,少了个","号
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友768b6a3f2
2011-05-03 · TA获得超过809个赞
知道小有建树答主
回答量:651
采纳率:0%
帮助的人:689万
展开全部
select top (10) * from property_sell order by PropertyID desc; 这个是ACCESS,MS SQL SERVER里面使用的SQL语句语法
在MYSQL中,使用:
select * from property_sell order by PropertyID desc LIMIT 10;
就能实现相同的效果。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式