标签:修改表 查询语句 主键 create between where 条件 执行 select
导语:Access查询中拉差距的部分
简单查询 [是基于单个表的查询]
Select 字段列表 from 数据表
Select 字段列表 from 数据表
Select * from 数据表
Select 字段列表 from 数据表 where 条件
Select distinct 字段名 from 数据表 where 条件
Select 字段列表 from 数据表 where 条件1 or /and 条件2 …
Select 字段列表 from 数据表 where 字段 (not) between 值1 and 值2
Select 字段列表 from 数据表 where 字段 (not) in (值列表)
Select 字段列表 from 数据表 where 字段 (not) like “通项表达式”
联接查询[多表查询]
Select 字段列表 from 数据表列表 where 表间联接条件
Select 字段列表
from 数据表1 inner /left/right/full join 数据表2
on 表联接条件
where 记录筛选条件
特殊查询
集合函数:sum ( ):求和 avg( ):求均值 Count( ):计数 max( ):求最大值 min( ):求最小值
语法:
Select 集合函数的应用 from 数据表 where 条件
Select 字段列表 from 数据表 where 条件 order by 字段 asc/desc
Select 字段列表 from 数据表 where 条件 group by 分组字段
Select 字段列表
from 数据表
where 条件
group by 分组字段 having 限制条件
Select top n,字段列表
from 数据表
where 条件 order by 字段 asc/desc
显示满足条件的百分之n条件记录
Select top n percent,字段列表
from 数据表
where 条件 order by 字段 asc/desc
Select 字段1 as 别名,… from 数据表
Select 字段列表 into 表名 from 数据表 where 条件
嵌套查询
Select 字段from 数据表 where 条件=(查询语句)
Select 字段from 数据表 where 字段名 in(查询语句)
联合查询
①打开查询“设计视图”
②单击“查询类型”组上的“联合”按钮,打开“SQL”视图
③在“SQL”空白区域输入SQL语句
④保存及执行查询
Select 字段from 数据表 where 条件 union Select 字段 from 数据表 where 条件
数据定义查询
①打开“SQL”视图
②单击“查询类型”组中的“数据定义”按钮
③在“SQL”空白区域输入SQL语句
④保存及执行查询
create table 表名(字段名1 数据类型 , …)
(如果要将某个字段定义为主键,则需要在数据类型后加命令Primary key)
①向表中添加字段
ALTER TABLE 表名 ADD 字段名 1 字段类型 ,…
②删除表中字段
ALTER TABLE 表名 DROP 字段名 1 , …
③修改表中字段类型
ALTER TABLE 表名 ALTER 字段名1 新类型, …
DROP TABLE 表名
INSERT INTO 表名(字段名列表) VALUES (值列表)
DELETE 字段列表 FROM 表名 (WHERE 条件)
UPDATE 表名 SET 字段1=表达式1,… (WHERE 条件)
标签:修改表 查询语句 主键 create between where 条件 执行 select
原文地址:https://www.cnblogs.com/anbus/p/10265758.html