原创 MySQL与Access之语法区别收藏

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

发表于 @ 2007年01月25日 16:25:00|评论(loading...)

新一篇: 读取中英混合的文本文件-ANSI编码 | 旧一篇: 关于FireFox的启动速度及优化

Csdn Blog version 3.1a
Copyright © vanter