MySQL冲突解决,开窗及一些其他函数的应用

文章目录

        • 1. 冲突解决
        • 2. MySQL开窗函数的使用
        • 3. coalesce()函数
        • 4. cast()
        • 5. substring_index()
        • 6. date_sub() 从日期减去指定的时间间隔

1. 冲突解决

1.1 如果插入冲突,就更新指定值

insert into table.name()
on duplicate key update
	字段名 = 字段值
	...
;

1.2 如果插入冲突,就忽略导致错误的行(舍弃要插入的数据,保留原来的数据)

insert ignore into table.name()

2. MySQL开窗函数的使用

注意:MySQL开窗函数在8+及其以后的版本才有

select t.*,
       row_number() over (partition by t.字段1, t.字段2 order by t.字段3 desc, t.字段4 desc) as rows_desc
 from table.name;

3. coalesce()函数

合并字段值

select
coalesce(字段名, 0) as coalesce_val
from table.name;

4. cast()

将原来的字段值转换为我们指定的类型

select
cast(字段名 as int)
from table.name;

5. substring_index()

根据指定的符号对字段进行拆分,取第二个分割符前的值
注意:从右往左取值的话,从-1开始
从左往右取值,从1开始

select 
substring_index(字段名, ',', 2)
from table.name

6. date_sub() 从日期减去指定的时间间隔

curdate()获取当前日期
now()获取当前时间

select date_sub(curdate(), interval 1 day);
select curdate() - interval 1 day;

select curdate() + interval 1 day;

你可能感兴趣的:(mysql)