赞
踩
###主键约束
t4
(id
int,name
varchar(10));###数据类型
1. 整数: int(m) 和 bigint(m) ,m代表显示长度,不足m长度时补零,需要结合zerofill关键字使用
create table t_int(id int,age int(10) zerofill);
insert into t_int values(1,20);
select * from t_int;
2. 浮点数: double(m,d) m代表总长度 d代表小数长度, 超高精度浮点数decimal(m,d) 当涉及超高精度运算时使用。
25.234 m=5 d=3
3. 字符串:
###导入sql文件
###去重 distinct
- 当需要多个条件同时满足时使用 and
- 当多个条件满足一个就行时使用 or
###between x and y 包含x和y
###排序 order by 字段名
- order by 字段名 asc(升序)/desc(降序);
####数值计算 + - * / % 7%2 = mod(7,2)
###日期相关
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。