1. 插入语句
insert into 表名 values(值1,值2,.....);
insert into 表名(字段1,字段2,.....) values(值1,值2,......)
2.select 语句
select * from 表名 [where 条件];
select 字段1,字段2,字段3 from 表名 [where 条件];
3.where子句
where 子句在sql语句中扮演了重要角色,主要通过一定的运算条件进行数据的筛选。
算术运算符:+ - * /或DIV %或MOD
比较运算符 := <> != > < >= <= (between A and B) not between in not in
<=> :严格比较两个null值是否想等 两个操作码均为null时,其所得值为1;而当一个操作码为Null时,其所得值为0
like :模糊匹配
regexp 或rlike 正则表达式
is null:为空 is not null 不为空
逻辑运算符:not 或! 逻辑非 and 逻辑与 or 逻辑或 xor 逻辑异或
位运算符:& 按位与 | 按位或 ^按位异或 !取反 <<左移 >>右移
4. update 语句
update 表名 set 字段名1=值1,字段名2=值2,字段名3=值3 where 条件;
5.delete语句
delete from 表名 where 条件 ;