我要跳跳跳跳跳跳槽
我要跳跳跳跳跳跳槽
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
我要跳跳跳跳跳跳槽的博客
全部文章
(共2篇)
题解 | 不低于平均分的最低分
别人写的都挺好,我只是分享一下我的思路以及犯的错误: 1.要审题,题目要求是"SQL"比较,那么就需要两张表进行联表; from exam_record a left join examination_info b on a.exam_id = b.exam_id where b.tag = 'SQ...
Mysql
2021-11-16
3
756
题解 | #创建索引#
alter 创建索引 alter table examination_info add index idx_duration(duration); alter table examination_info add unique uniq_idx_exam_id(exam_id); alter tab...
Mysql
2021-11-08
9
689