MySQL
qq_43380778
这个作者很懒,什么都没留下…
展开
-
创建MySQL桌面快捷方式的方法
#创建MySQL桌面快捷方式的方法1)桌面右键->新建->快捷方式->对象位置输入:C:\Windows\System32\cmd.exe快捷方式名称自己定义,确定,快捷方式建立成功2)右键单击刚才建立的快捷方式->属性->把目标一栏修改成MySQL启动参数:C:\Windows\System32\cmd.exe原创 2018-10-14 22:12:25 · 12926 阅读 · 2 评论 -
查询排名第N的数据
select Max(age) Secondelderagefrom Employees where (select Max(age)from Employees) > age;//在表中查找比最大年龄小的最大值±---------------+| Secondelderage |±---------------+| 48 |±------..原创 2018-10-18 22:36:06 · 396 阅读 · 0 评论 -
成绩排序问题
第一种排序方式:并列不加1select s1.Score, (select count(**distinct** s2.Score) from Scores as s2 where s2.Score **>=** s1.Score) as Rank from Scores as s1 order by Score desc第二种排序方式:并列加1sel...原创 2018-10-26 23:04:31 · 343 阅读 · 0 评论