数据库
首页 > 数据库> > 07 sql函数

07 sql函数

作者:互联网

函数:
切记函数和括号要紧密相连
内置函数
1.算术函数abs mod round
max min avg sum count 这几个为聚集函数,特别在分组中常用

select abs(-1);
select mod(101,2);
select round(37.25,1);

2.字符串函数 concat,length,char_length,lower,upper,replace,substring

select concat("111","222","333");
select length("7777年后咕咕咕");
select char_length("7777年后咕咕咕");
select lower("777ABC");
select upper("666abc");
select replace("77acwing","77ac","77av");
select substring("76543721",1,3);
-- 765 第一位下标为1

3.日期函数

select current_date();
select current_time();
select current_timestamp();
-- 可以用year()平替
select extract(year from '2022-04-05 06:55:57');
-- 取日期
select date('2022-04-05 06:55:57');
-- 取时间
select time('2022-04-05 06:55:57');
-- 取小时
select hour('2022-04-05 06:55:57');

4.转换函数 转换数据类型

自定义函数

标签:06,函数,04,--,57,sql,select,07
来源: https://www.cnblogs.com/ydssx7/p/16156009.html