牛客112736836号
牛客112736836号
全部文章
题解
经验汇总(1)
归档
标签
去牛客网
登录
/
注册
牛客112736836号的博客
全部文章
/ 题解
(共41篇)
题解 | #将所有to_date为9999-01-01的全部更新为NULL#
【新知识GET!!】更新某一列的值update table_name set 列民=新值 where 列名=某个值【代码如下】update titles_test set to_date = null, from_date = '2001-01-01' where to_date = '9999-0...
2021-07-16
0
307
题解 | #删除emp_no重复的记录,只保留最小的id对应的记录。#
【新知识GET!!!】删除表中的重复值,只保留最小的ID对应的记录1.使用 delete from2.用子查询找到emp_no中的最小id【代码如下】delete from titles_testwhere id not in(select * from(select min(id) from ti...
2021-07-16
0
323
题解 | #构造一个触发器audit_log#
【新知识GET!!】在MySQL中,创建触发器语法如下:CREATE TRIGGER trigger_nametrigger_time trigger_event ON tbl_nameFOR EACH ROWtrigger_stmt其中:trigger_name:标识触发器名称,用户自行指定;tr...
2021-07-16
0
390
题解 | #对first_name创建唯一索引uniq_idx_firstname#
【GET新知识!!】【代码如下】alter table actor add unique uniq_idx_firstname(first_name);alter table actor add index idx_lastname(last_name)【怎么创建唯一索引】1.ALTER TABLE...
2021-07-14
0
374
题解 | #创建一个actor_name表#
【MYSQL创建数据表的三种方法】1.常规创建:create table if not exists 目标表2.复制表格:create 目标表 like 来源表3.将table1的部分拿来创建table2 本题考察第三种创建方式【代码如下】create table if not exists act...
2021-07-14
0
317
题解 | #批量插入数据,不使用replace操作#
【mysql中常用的三种插入数据的语句】:insert into表示插入数据,数据库会检查主键,如果出现重复会报错;replace into表示插入替换数据,需求表中有PrimaryKey,或者unique索引,如果数据库已经存在数据,则用新数据替换,如果没有数据效果则和insert into一样;...
2021-07-14
0
340
题解 | #批量插入数据#
【代码如下】insert into actor(actor_id, first_name, last_name, last_update)VALUES(1,'PENELOPE','GUINESS','2006-02-15 12:34:33'),(2,'NICK','WAHLBERG','2006-0...
2021-07-14
0
379
题解 | #创建一个actor表,包含如下列信息#
【代码如下】create table actor( actor_id smallint(5) not null primary key, first_name varchar(45) NOT NULL, last_name varchar(45) NOT NULL, last...
2021-07-14
0
450
题解 | #查找描述信息中包含robot的电影对应的分类名称以及电影数目,而且还需要该分类对应电影数量>=5部#
【第一次遇到结合文本正则进行筛选】【思路】难!到完整写出来花了蛮久的! 【代码如下】select t2.name, count(t2.film_id) from(select t1.film_id, t1.title, t1.description, c.name from(select f., f...
2021-07-13
0
337
题解 | #汇总各个部门当前员工的title类型的分配数目#
【新知识】group by 可以嵌套使用,之前一直以为只能对一个条件group【代码】select t2.dept_no, dp.dept_name, t2.title, t2.count from(select t1.dept_no, t1.title, count(title) as count...
2021-07-13
0
398
首页
上一页
1
2
3
4
5
下一页
末页