牛客912492032号
牛客912492032号
全部文章
分类
题解(14)
归档
标签
去牛客网
登录
/
注册
牛客912492032号的博客
全部文章
(共3篇)
牛客的课程订单分析(七)
select source,count(source) as cnt from (select o.id,case c.id when 1 then "PC" when 2 then "Android" whe...
sql
2021-03-15
1
672
牛客的课程订单分析(六)
select o.id,o.is_group_buy, case when o.is_group_buy="Yes" then NULL else c.name end as client_name from order_info o left join client c on o...
sql
2021-03-15
2
685
mysql添加唯一索引+普通索引
使用 mysql alter 创建索引,代码如下: alter table actor add unique uniq_index_firstname (first_name); alter table actor add index idx_lastname(last_name);结果没通过...
sql
2021-03-04
0
1291