ctrl + k + c
: 注释多行
ctrl + k + u
: 取消多行注释
//查询表的所有数据
select * from 表名
//根据字段傎查
select * from 表名 where id = 1
//查询ID字段1-3范围内的
select * from 表名 where id between 1 and 3;
//查询表的指定字段的值
select 字段1,字段2 from 表名
//查询表的指定字段前10 值并指定别名
select top 10 字段字 AS 别名 from 表名
//查询表的前1000条,指定字段
select top 1000 id,location,ip,mac from 表名
//查询指定字段包含值的项
select * from 表名 where 字段 in ('2','888')
//查询指定字段包含值的项
select * from 表名 where 字段名 like '%F%'
/***
% 表示多个字值
_ 下划线表示一个字符
M% 正则表达式,模糊查询信息为 M 开头的
%M% 表示查询包含M的所有内容
%M_ : 表示查询以M在倒数第二位的所有内容
***/
//插入数据
insert into table_neme (id,字段1,字段) values
( 1,'字段1值', '字段2值' ),
( 2,'字段1值', '字段2值' ),
( 3,'字段1值', '字段2值' ),
update 表名 set 字段1='新值',字段2='新值' where id=1 //修改数据
update 表名 set 字段1 = '10234' where 字段1='' //追加字段值为空的字段里;
update 表名 set 字段1 = concat (字段1,'10234') where 字段1 !='' //只对有数据的行追加数据;
update 表名 set 字段1 = concat(字段1,'追加字符') //字段后面追加
update 表名 set 字段1 = concat('追加字符',字段1) where id = 1 //字段前面追加
update 表名 set 字段1 = '' where id = 2; //清空某字段的值
update 表名 set 字段1 = replace(字段1,'old','new') where id = 1 //查找字段值的内容,并替换 ;
update 表名 set 字段1 = replace(字段1,'old','new') //查找字段值的内容,并替换 ;
delete from 表名字 where id >'100' and id<200 //删除ID值范围内的数据
where
(1)、按条件表达式筛选
条件运算符:> < = != <> >= <=
(2)、按逻辑表达式筛选
逻辑运算符: && || and or not
(3)、模糊查询
like between and in is null
(order by的asc为升序,desc为降序)
selectfrom table_name where 条件and条件;
selectfrom table_name where 条件and条件or条件;
select*from table_name where (字段名,字段名)=(值,值);