牛客424968675号
牛客424968675号
全部文章
分类
题解(31)
归档
标签
去牛客网
登录
/
注册
牛客424968675号的博客
全部文章
(共25篇)
题解 | #批量插入数据#
create table actor_name(first_name varchar(45) not null,last_name varchar(45) not null); insert into actor_name (first_name, las...
2021-07-19
0
394
题解 | #批量插入数据#
insert into actor (actor_id, first_name, last_name, last_update)values(1,'PENELOPE','GUINESS','2006...
2021-07-19
0
429
题解 | #使用join查询方式找出没有分类的电影id以及名称#
create table actor(actor_id smallint(5) not null,first_name varchar(45) not null,last_name varchar(45) not null,last_update date not null,primary key(...
2021-07-19
0
549
题解 | #使用join查询方式找出没有分类的电影id以及名称#
select a.title, a.descriptionfrom(select fc.category_id,c.name,film.title, film.descriptionfrom film, film_category fc,category cwhere fc.film_id=film...
2021-07-19
0
319
题解 | #使用join查询方式找出没有分类的电影id以及名称#
select film.film_id, film.titlefrom film left join film_categoryON film.film_id= film_category.film_idwhere film_category.category_id IS NULL
2021-07-19
0
383
首页
上一页
1
2
3
下一页
末页