sql server与mysql使用的一个小细节

来源:互联网 发布:福建厦门seo 编辑:程序博客网 时间:2024/05/29 10:08

SQL Server:

select top 8 * from stu_info  order by idx


MySQL:不支持top关键字
select * from `stu_info` order by idx desc limit 8