1. 程式人生 > >MySQL與Access之語法區別

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