首页 > 开发 > Mysql > 正文

MySQL与Access之语法区别

2018-10-16 21:17:36
字体:
来源:转载
供稿:网友
select id,name from tbl_student where score>59 order by name limit 25

上面这条SQL指令可以在MySQL上执行,但是在Access上运行会返回语法错误。
在Access中,这条指令应该写成

select  top 25 from tbl_student where score>59 order by name


http://blog.csdn.net/vanter/archive/2007/01/25/1493319.aspx

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表