Mr_jin
Mr_jin
全部文章
题解
大数据学习(1)
数据结构(3)
归档
标签
去牛客网
登录
/
注册
Mr_jin的博客
全部文章
/ 题解
(共25篇)
题解 | #实习广场投递简历分析(二)#
mysql日期格式转换 DATE_FORMAT(date,format)%Y-年份%m-月份%M-月名%K-小时select job,date_format(date,'%Y-%m')as mon,sum(num)as cntfrom resume_infowhere date like '2025...
2021-06-24
0
434
题解 | #在last_update后面新增加一列名字为create_date#
mysql添加列alter table table_nameadd column col_name type default'';#////alter table actoradd column create_date datetime not null default '2020-10-01 00...
2021-06-24
0
410
题解 | #对first_name创建唯一索引uniq_idx_firstname#
mysql alter语句创建索引1、alter table actor add unique uniq_idx_firstname(first_name);//唯一索引2、alter table actor add index idx_lastname(last_name);//普通索引3、cre...
MySQL创建索引
2021-06-24
0
436
题解 | #批量插入数据,不使用replace操作#
对于MySQL插入语句考察 1、insert into table values();//一般插入2、replace into table values();//插入的数据和已有的数据主键相同,则会替换掉已有的数据3、insert ignore into table values();//忽略已存在...
2021-06-24
0
400
题解 | #创建一个actor_name表#
本题主要考察sql创建表的方式:1、create table if not exists table_name();2、create table table_name like table_name1;(复制表结构)3、create teble if not exists table_name() ...
2021-06-23
5
708
首页
上一页
1
2
3
下一页
末页