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
新聞熱點
疑難解答