DDL语句(数据定义语句)
一、创建表格
- 创建表格: create table 表名(字段1 字段类型 字段约束, 字段2 字段类型 字段约束, ......);
- 字段类型 和 字段约束可以不写, 但是一般都会将字段类型写上, 用于提示开发者应该存储的字段类型
- 例如 <a>create table t_stu(id integer primary key autoincrement, name text);</a>
- 注意: 当调用上面蓝色的一段话后, 会创建一个表名为 t_stu 的sqlite表, 但是重复执行的时候, 就会报表格已经存在的错误, 我们在执行语句的时候可以没有效果, 但是一定不能有错误
- 添加不存在才创建的语句是 <a>create table if not exists t_stu(id integer primary key autoincrement, name text);</a>
- 意思就是: 如果t_stu表格不存在, 就创建一个t_stu表格, 如果存在, 就不在重复创建
二、删除表格
- 删除表格: drop table 表名;
- 例如: <a>drop table t_stu</a>
- 意思是删除 表名为 t_stu的这个sqlite表
- 防止重复删除的错误语句: <a>drop table if exists t_stu;</a>
三、修改表格
- DDL语句中修改表格的语句只能实现部分功能: <a>修改表名</a>, <a>新增字段</a>
- 修改表名: alter table 旧表名 rename to 新表名;
- <a>alter table t_stu rename to t_student;</a>
- 将 t_stu表 名字改为 t_student
- 新增属性: alter table t_student add column 字段名 字段类型 字段约束;
- <a>alter table t_student add column address text not null default 地址;</a>
- 给 t_student表 添加一个 address字段, 类型text, 约束不能为空, 且默认值为 地址
sqlite中存储类 的 数据类型(字段类型)
- null: 值是一个 NULL 值。
- integer: 值是一个带符号的整数,根据值的大小存储在 1、2、3、4、6 或 8 字节中。
- real: 值是一个浮点值,存储为 8 字节的 IEEE 浮点数字。
- text: 值是一个文本字符串,使用数据库编码(UTF-8、UTF-16BE 或 UTF-16LE)存储。
- blob: 值是一个 blob 数据,完全根据它的输入存储。
sqlite中的常用约束
- not null - 非空
- unique - 唯一
- primary ket - 主键
- foreign key - 外键
- check - 条件检查
- default - 默认
- autoincrement - 自动增加 (需要数据类型为integer)
DML语句(数据操作语句)
一、插入语句
- insert into 表名 (字段1, 字段2, ...) values (字段1的值, 字段2的值, ...);
- 例句: <a>insert into t_stu (name, age, score, num) values ('张三', 18, 60, 'jx0001');</a>
- 注意: 插入数据时, text类型一定要使用单引号
二、更新语句
- update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, ...
- 例句: <a>update t_stu set name = '王小二', age = 19;</a>
- 注意: 这一句执行后, 表中所有行的name和age对应的数据都会修改, 如果需要只改某一行的语句, 需要添加条件语句
二、删除语句: 操作记录, 即删除整行
- delete from 表名;
- 例句: <a>delete from t_stu;</a>
- 注意: 上面这句, 会删除t_stu表中所有数据, 如果想要删除指定行, 需要添加条件语句
条件语句
一、示例
-
现有sqlite表如下, 在这个基础上进行指定数据的操作:
现有数据 -
执行修改语句<a>update t_stu set name = '钱七', age = 21 where num = 'jx0002';</a>, 效果如下:
修改后- 其中的<a>where num = 'jx0002'</a>就是条件语句: 指定num = 'jx0002'的语句
-
执行删除语句: <a>delete from t_stu where age < 19 and score < 70;</a>, 效果如下:
删除后- 删除 age < 19 并且 score < 70 的数据
-
可以修改一个字段的值 等于 另一个字段的值: <a>update t_stu set score = age;</a>
score = age
二、条件语句的常见格式
- where 字段 = 某个值; (不能用==)
- where 字段 is 某个值; (is 相当于 =)
- where 字段 != 某个值;
- where 字段 is not 某个值; (is not 相当于 !=)
- where 字段 > 某个值;
- where 字段 < 某个值;
- where 字段1 = 某个值 and 字段2 = 某个值; (and 相当于C语言中的 &&)
- where 字段1 = 某个值 or 字段2 = 某个值; (or 相当于C语言中的 ||)
DQL(数据查询语句)
一、基本操作
- 基本语句: select 字段名 from 表名;
-
例如 <a>select * from t_stu;</a>
-
*是通配符, 表示所有的字段
基本查询 -
查询指定字段: <a>select name, age from t_stu;</a>
查询指定字段 -
根据条件去查询 <a>select * from t_stu where age > 19;</a>
根据条件去查询
-
二、统计查询
-
count(字段名): 值不为null的 该字段的个数, 字段名使用通配符值, 指的是数据行数
-
avg(字段名): 表中指定字段的平均数, 如果是字符串, 默认改值以0计算
-
sum(字段名): 表中指定字段的和
-
max(字段名): 表中指定字段中最大的那个值
-
min(字段名): 表中指定字段中最小的那个值
-
执行语句<a>select count(age) from t_stu;</a>
age字段有值的个数
三、排序查询
- 格式 select 字段名 from 表名 order by 字段名 DESC;
- ASC: 升序 DESC: 将序 $s默认是ASC
-
例句: <a>select score from t_stu order by age DESC;</a>效果如下:
查询score字段的值, 并根据age字段的值进行降序排序- 查询t_stu表中的所有score字段的值, 并根据age的值降序排列
- 例句: <a>select * from t_stu order by age ASC, score DESC;</a>
-
查询表中所有的字段值, 并根据age的值进行升序排列, 如果age有相同的值, 那么这些值根据score的值进行降序排列
效果
四、分页查询
-
格式: select 字段名 from t_stu limit 起点下标, 长度;
-
例句: <a>select * from t_stu limit 0, 3;</a>
-
现有数据如下:
现有数据 -
执行<a>select * from t_stu limit 0, 3;</a>结果:
select * from t_stu limit 0, 3; -
执行<a>select * from t_stu limit 2, 2;</a>结果:
select * from t_stu limit 2, 2; -
排序查询: <a>select * from t_stu order by score asc limit 2, 3;</a>
赛选并排序- 根据score从小到大排序后, 在取下标2为起点的3条数据
-
省略写法 <a>select * from t_stu limit 3;</a>
-
默认下标为0开始, 取三条数据
默认下标为0开始, 取三条数据
五、多表查询
-
现有t_user表 和 t_duanzi表, 如下图:
t_user
t_duanzi -
现在同时查询两个表:
-
<a>select * from t_user, t_duanzi;</a>
同时查询 -
根据t_user的id 和 t_duanzi的userId相等时进行查询
t_user的id 和 t_duanzi的userId相等
六、表名和字段名的别名
-
查询指定字段:
- <a>select t_user.id, t_user.name, t_duanzi.id, t_duanzi.name, content from t_user, t_duanzi where t_user.id = t_duanzi.userId;</a>
- 上面语句中两个表去自己的字段时, 需要使用点语法, 如果表名很长就会显得很麻烦, 可以使用替换的方式, 在查询时将表名换一个名字
- 表名的地方使用 as 来更换表名
-
<a>select u.id, u.name, d.id, d.name, content from t_user as u, t_duanzi as d where u.id = d.userId;</a>
查询结果
-
查询时, 不仅仅表名可以修改, 字段也可以修改
- <a>select u.id as uid, u.name as u_name, d.id as did, d.name as d_name, content from t_user as u, t_duanzi as d where u.id = d.userId;</a>
-
效果如下:
修改字段名
网友评论