鹅鸭杀没鸡
鹅鸭杀没鸡
全部文章
分类
题解(11)
归档
标签
去牛客网
登录
/
注册
鹅鸭杀没鸡的博客
全部文章
(共11篇)
涉及到max函数的链接表sql写法
select u.name, c.name, date from user u,client c,login l where l.user_id = u.id and l.client_id = c.id and (user_id, date) in (select user_id, max(da...
Mysql
2021-10-08
0
280
题解 |新用户登陆数
select date, count(distinct t.user_id) from login left join (select user_id,min(...
2021-09-05
0
382
题解 | 次日留存率
次日留存率 select round(count(distinct l2.user_id)/count(distinct l1.user_id),3) from (select *,min(date) dat ...
2021-09-05
0
579
题解 | #牛客每个人最近的登录日期(二)#
max 连接的时候注意多层嵌套。 select user.name, client.name, DATE from login join user on login.user_id =...
2021-09-05
0
280
题解 | #创建一个actor_name表#
create table if not exists actor_name (first_name varchar(45) not null, &n...
2021-09-04
0
371
题解 | 忽略已存在数据,插入行
# mysql中常用的三种插入数据的语句: # insert into表示插入数据,数据库会检查主键,如果出现重复会报错; # replace into表示插入替换数据,需求表中有PrimaryKey, #  ...
2021-09-04
0
336
题解 | 批量插入数据
INSERT into actor values(1,'PENELOPE','GUINESS','2006-02-15 12:34:33'), (2,'NICK','WAHLBERG','2006-...
2021-09-04
0
346
题解 | 创建表格
创建表格 create table xxx() primary key 单独写 外键写法: FOREIGN KEY (Id_P) REFERENCES Persons(Id_P) CREATE table actor...
2021-09-04
0
326
题解 | 连接两个字符串
concat 链接两个字符串 select concat(last_name,' ',first_name) as name from employees
2021-09-04
0
272
题解 |left join / is null
select film.film_id,title from film left join film_category on film.film_id = film_category.film_id where...
2021-09-04
0
315
首页
上一页
1
2
下一页
末页