MySQL与Access之语法区别
点击次数:30 次 发布日期:2008-11-22 13:50:01 作者:源代码网
|
select id,name from tbl_student where score>59 order by name limit 25 上面这条SQL指令可以在MySQL上执行,但是在Access上运行会返回语法错误。 select top 25 from tbl_student where score>59 order by name |
|
select id,name from tbl_student where score>59 order by name limit 25 上面这条SQL指令可以在MySQL上执行,但是在Access上运行会返回语法错误。 select top 25 from tbl_student where score>59 order by name |