帝王血统的蚂蚱
帝王血统的蚂蚱
全部文章
题解
归档
标签
去牛客网
登录
/
注册
帝王血统的蚂蚱的博客
全部文章
/ 题解
(共94篇)
题解 | #查找字符串 10,A,B 中逗号,出现的次数cnt#
用原字符串长度减去将逗号替换成空的字符串长度 char_length(): 字符串的字符长度 length(): 字符串的byte长度 原来select可以空选啊。。。 select char_length("10,A,B")-char_length(replace("10,A,B", ",", "...
Mysql
2021-10-25
0
328
题解 | #将id=5以及emp_no=10001的行数据替换成id=5以及emp_no=10005#
1.直接使用replace into,具体用法和insert into一毛一样。 replace into titles_test select id, 10005, title, from_date, to_date from titles_test where id = 5 and emp_n...
Mysql
2021-10-25
0
444
题解 | #删除emp_no重复的记录,只保留最小的id对应的记录。#
总的来说就是要根据emp_no分组然后找到每组id最小的record。 delete from titles_test where id not in (select * from (select min(id) from titles_test ...
Mysql
2021-10-25
0
368
题解 | #针对上面的salaries表emp_no字段创建索引idx_emp_no#
强制索引force index(index_name)要加在select。。。from。。。后面 select * from salaries force index (idx_emp_no) where emp_no = 10005
Mysql
2021-10-24
0
276
题解 | #针对actor表创建视图actor_name_view#
跟通过query创建新表一样的操作。 create view actor_name_view as select first_name as first_name_v, last_name as last_name_v from actor
Mysql
2021-10-24
0
343
题解 | #对first_name创建唯一索引uniq_idx_firstname#
通过alter table来创建索引,要注意区分三种索引 1.key:普通索引,可有重复值,等同于index 2.unique:无重复值的索引,可有null 3.primary key:主键,无重复值的索引,无null alter table actor add unique uniq_id...
Mysql
2021-10-24
0
349
题解 | #创建一个actor_name表#
通过create table table_name as (query expression)这个表达可以将query结果建成新table create table actor_name as (select first_name, last_name from actor)
Mysql
2021-10-23
0
359
题解 | #批量插入数据,不使用replace操作#
insert ignore可以在insert的时候忽略掉已经存在或者出错的纪录,只插入没有问题的记录。 insert ignore actor value (3, "ED", "CHASE", "2006-02-15 12:34:33")
Mysql
2021-10-23
0
268
题解 | #批量插入数据#
求高人解答一下为什么日期可以直接insert string格式,不需要转成datetime格式? insert ignore into actor values (1, "PENELOPE", "GUINESS", "2006-02-15 12:3...
Mysql
2021-10-23
0
311
题解 | #创建一个actor表,包含如下列信息#
没啥好说的,总是记不住格式 create table actor ( actor_id smallint(5) not null, first_name varchar(45) not null, last_name varchar(45) not null, las...
Mysql
2021-10-23
0
282
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页