不穿胖次的羊
不穿胖次的羊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
不穿胖次的羊的博客
全部文章
(共33篇)
题解 | #针对salaries表emp_no字段创建索引#
查询时强制索引 select * from salaries force index(idx_emp_no) where emp_no = 10005 查询时禁止索引 select * from salaries ignore index(idx_emp_no) where emp_no = 100...
2023-03-15
1
220
题解 | #对first_name创建唯一索引#
方法1.Create创建索引 create unique index uniq_idx_firstname on actor (first_name); create index idx_lastname on actor (last_name); 方法2.Alter创建索引alter table ...
2023-03-15
1
233
题解 | #将所有获取奖金的员工当前的薪水增加10%#
使用连接查询,子查询执行时需要创建临时表,查询完毕再删除临时表,相比连接查询多了一个创建和销毁临时表的阶段update salaries as s join emp_bonus using(emp_no)set salary=salary*1.1where to_date='9999-01-01'
2023-03-15
1
253
首页
上一页
1
2
3
4
下一页
末页