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
相關文章
相關標籤/搜索