函数指的是一段可以直接被另一段程序调用的程序或代码。
函数 | 功能 |
---|---|
concat(s1,s2) | 字符串拼接 |
lower(str) | 将字符串str全部转为小写 |
upper(str) | 将字符串str全部转为大写 |
lpad(str,n,pad) | 左填充,用字符串pad对str的左边进行填充,达到n个字符串长度 |
rpad(str,n,pad) | 右填充,用字符串pad对str的右边进行填充,达到n个字符串长度 |
trim(str) | 去掉字符串头部和尾部的空格 |
substring(str,start,len) | 返回从字符串str从start位置起的len个长度的字符串 |
select concat("hello", "world");
select lower("HELLO");
select upper("hello");
select lpad('01', 5, '-'); #左填充
select rpad('01', 5, '-'); #右填充
select trim(' hello world'); #去除头部和尾部的空格
select substring('hello', 1, 2); #he
?
函数 | 功能 |
---|---|
ceil(x) | 向上取整 |
floor(x) | 向下取整 |
mod(x,y) | 返回x/y的模 |
rand() | 返回0~1内的随机数 |
round(x,y) | 求参数x的四舍五入的值,保留y位小数 |
select ceil(1.5); #2
select floor(1.7); #1
select mod(2,2); #0
select rand(); #返回0~1之间的随机数
select round(3.321,2); #3.32
#生产一个随机的六位数验证码
select lpad(round(rand()*1000000, 0), 6, '0');
函数 | 功能 |
---|---|
curdate() | 返回当前日期 |
curtime() | 返回当前时间 |
now() | 返回当前日期和时间 |
year(data) | 获取指定date的年份 |
month(date) | 获取指定date的月份 |
day(date) | 获取指定date的日期 |
date_add(date,interval expr type) | 返回一个日期/时间值加上一个时间间隔expr后的时间值 |
datediff(date1,date2) | 返回起始时间date1和结束时间date2之间的天数 |
#curdate
select curdate();
#curtime
select curtime();
#noe
select now();
#year,month,day
select year(now());
select month(now());
select day(now());
#date_add,推后70天
select date_add(now(), interval 70 day );
#datediff相差几天date1-date2
select datediff('2021-12-01', '2022-1-1');
函数 | 功能 |
---|---|
if(value,t,f) | 如果value位true,则返回t,否则返回f |
ifnull(value1, value2) | 如果value不为空,返回value1,否则返回value2 |
case when [val1] then [res1] ...else [default] end | 如果val1位true,返回res1,...否则返回default默认值 |
case [expr] when [val1] then [res1] ... else [default] end | 如果expr的值等于val1,返回res1,..否则返回default默认值 |
select if(true, 'ok', 'error'); #ok
select ifnull('ok', 'default'); #ok
select ifnull(null, 'default'); #default
#查询表中的员工姓名和工作地址北京输出一线城市,其他输出二线城市
select
name,
(case wordaddress when '北京' then '一线城市' else '二线城市' end ) as'工作地址'
from emp;
?
概念:约束是作用于表中字段上的规则,用于限制存储在表中的数据
目的:保证数据库中数据的正确,有效性和完整性
约束 | 描述 | |
---|---|---|
非空约束 | 限制该字段的数据不能位null | not null |
唯一约束 | 保证该字段的所有数据都是唯一的,不重复的 | unique |
主键约束 | 主键是一行数据的唯一标识,要求非空且唯一 | primary key |
默认约束 | 保存数据时,如果未指定该字段的值,则采用默认值 | default |
检查约束 | 保证字段值满足某一个条件 | check |
外键约束 | 用来让两张表的数据之间建立连接,保证数据的一致性和完整性 | foreign key |
字段名 | 约束条件 | 约束关键字 |
---|---|---|
id | 主键,并且自动增长 | primary key,auto_increment |
name | 不为空,并且唯一 | not null,unique |
age | 大于0,并且小于等于120 | check |
status | 如果没有指定该值,默认为1 | default |
gender | 无 |
?
create table user(
id int primary key auto_increment comment '主键',
name varchar(10) not null unique comment '姓名',
age int check(age > 0 && age <= 120) comment '年龄',
status char(1) default '1' comment '状态',
gender char(1) comment '性别'
)comment '用户表';
外键用来让两张表的数据之间建立连接,从而保证数据的一致性和完整性。
具有外键的表称为子表,外键所关联的称为父表。
语法
添加外键
create table 表名(
字段名 数据类型,
...
[constrint] [外键名称] foreign key(外键字段名) references 主表(主表列表)
);
alter table 表名 add constraint 外键名称 foreign key (外键字段名) references 主表 (主表列名);
alter table emp add constraint fk_dept_id foreign key (dept_id) references dept(id);
删除外键
alter table 表名 drop foreign key 外键名称;
alter table emp drop foreign key fk_emp_dept_id;