数值类型: a. 整数类型: 注意事项: 举例:某个整型字段 ,不为空,且有默认值
create table test (age int unisigned not null default 1);zerofill的使用
b. bit类型的使用 c.小数类型 小数类型占用…
首先创建一张表
在现有表的结构上增加字段
alter table users add image varchar(100) not null defalut comment 图片路径;修改某个字段的长度
alter table users modify job vachar(60) not null comment 工作;删除某个字段 删除sex这个字段
alter table users drop se…
select语句 过滤重复语句(distinct) 举例:
查询学生的总分
select name, math English China as 总分 from students;在姓赵的学生总分基础上, 增加60%,
select name, round((math English China) * 1.6, 2) as …
合计函数count, 统计多少条记录
统计共有多少学生
select count(*) from students;查询数学成绩大于等于90的学生数量
select count(*) from students where math > 90;查询总分超过235分的学生的数量
select count(*) from students where (English math Ch…
group by 子句 对列进行分组
有两张表: 一张为部门表, 一张为员工表统计 每个部门的平均工资,与最高工资
select avg(salary), max(salary) from emp group by deptno;统计 每个部门的每个岗位的 平均工资与最低工资(注意这里的…
概述: if举例: 如果conm等于null,就返回0,否则返回conm 使用if参与运算,这样就避免了conm为null时候,无法参与运算的情况 ifnull举例: select case when expr1 then expr1_res when expr2 then expr2_res…