您的位置:首页 > 数据库 > MySQL

sql server 与 mysql 命令的一些区别(不断更新)

2018-03-20 14:27 246 查看
1、查询学生表中学生成绩大于90的前三名
sql server查询的语句   select top 3  student.name,student.score  from student  order by student.score desc;
mysql的查询语句  select  student.name,student.score  from student  order by student.score desc limit 3;
     
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: