SQLite介绍与语句

2020-08-10  本文已影响0人  伶俐ll

数据库(Database)是按照数据结构来组织、存储和管理数据的仓库,数据库可以分为2大种类:

关于SQLite
关于SQL
关于SQL语句
SQL语句的种类

SQL语句

01、建表

create table 表名 (字段名1 字段类型1, 字段名2 字段类型2, …) ;
create table if not exists 表名 (字段名1 字段类型1, 字段名2 字段类型2, …) ;

create table  if not exists  t_student (id integer, name text, age inetger, score real) ;
02、删表

drop table 表名 ;
drop table if exists 表名 ;

drop table  if exists t_student ;
03、插入数据(insert)

insert into 表名 (字段1, 字段2, …) values (字段1的值, 字段2的值, …) ;

insert into t_student (name, age) values (‘lnj’, 10) ;
04、更新数据(update)

update 表名 set 字段1 = 字段1的值, 字段2 = 字段2的值, … ;

update t_student set name = ‘jack’, age = 20 ; //会将t_student表中所有记录的name都改为jack,age都改为20
05、删除数据(delete)

delete from 表名 ;

delete from t_student ; //上会将t_student表中所有记录都删掉
06、条件语句

如果只想更新或者删除某些固定的记录,那就必须在DML语句后加上一些条件,条件语句的常见格式:
where 字段 = 某个值 ; // 不能用两个 =
where 字段 is 某个值 ; // is 相当于 =
where 字段 != 某个值 ;
where 字段 is not 某个值 ; // is not 相当于 !=
where 字段 > 某个值 ;
where 字段1 = 某个值 and 字段2 > 某个值 ; // and相当于C语言中的 &&
where 字段1 = 某个值 or 字段2 = 某个值 ; // or 相当于C语言中的 ||

//将t_student表中年龄大于10 并且 姓名不等于jack的记录,年龄都改为 5
update t_student set age = 5 where age > 10 and name != ‘jack’ ;

//删除t_student表中年龄小于等于10 或者 年龄大于30的记录
delete from t_student where age <= 10 or age > 30 ;

//将t_student表中名字等于jack的记录,score字段的值 都改为 age字段的值
update t_student set score = age where name = ‘jack’ ;
07、DQL语句(查询语句)

格式
select 字段1, 字段2, … from 表名 ;
select * from 表名; // 查询所有的字段

select name, age from t_student ;
select * from t_student ;
select * from t_student where age > 10 ;  //  条件查询
08、起别名

字段和表都可以起别名
select 字段1 别名 , 字段2 别名 , … from 表名 别名 ;
select 字段1 别名, 字段2 as 别名, … from 表名 as 别名 ;
select 别名.字段1, 别名.字段2, … from 表名 别名 ;

//给name起个叫做myname的别名,给age起个叫做myage的别名
select name myname, age myage from t_student ;

//给t_student表起个别名叫做s,利用s来引用表中的字段
select s.name, s.age from t_student s ;
09、排序

查询出来的结果可以用order by进行排序
select * from t_student order by 字段 ;
select * from t_student order by age ;

默认是按照升序排序(由小到大),也可以变为降序(由大到小)
select * from t_student order by age desc ; //降序
select * from t_student order by age asc ; // 升序(默认)

也可以用多个字段进行排序

//先按照年龄排序(升序),年龄相等就按照身高排序(降序)
select * from t_student order by age asc, height desc ;
10、limit

使用limit可以精确地控制查询结果的数量,比如每次只查询10条数据
select * from 表名 limit 数值1, 数值2 ;

//跳过最前面4条语句,然后取8条记录
select * from t_student limit 4, 8 ;
11、简单约束

建表时可以给特定的字段设置一些约束条件,常见的约束有
not null:规定字段的值不能为null
unique :规定字段的值必须唯一
default:指定字段的默认值
(建议:尽量给字段设定严格的约束,以保证数据的规范性)

//name字段不能为null,并且唯一,age字段不能为null,并且默认为1
create table t_student (id integer, name text not null unique, age integer not null default 1) ;
12、主键约束

主键的作用

主键的声明
在创表的时候用primary key声明一个主键

//integer类型的id作为t_student表的主键
create table t_student (id integer primary key, name text, age integer) ;

主键字段
只要声明为primary key,就说明是一个主键字段
主键字段默认就包含了not nullunique两个约束

如果想要让主键自动增长(必须是integer类型),应该增加autoincrement

create table t_student (id integer primary key autoincrement, name text, age integer) ;
13、外键约束

利用外键约束可以用来建立表与表之间的联系
外键的一般情况是:一张表的某个字段,引用着另一张表的主键字段

新建一个外键
create table t_student (id integer primary key autoincrement, name text, age integer, class_id integer, constraint fk_t_student_class_id_t_class_id foreign key (class_id) references t_class (id)) ;

t_student表中有一个叫做fk_t_student_class_id_t_class_id的外键
这个外键的作用是用t_student表中的class_id字段引用t_class表的id字段

14、表连接查询

需要联合多张表才能查到想要的数据

表连接的类型

//查询0316iOS班的所有学生
select s.name,s.age from t_student s, t_class c where s.class_id = c.id and c.name = ‘0316iOS’;
15、给数据库表如何增加字段

alter table 表名 add 字段名 字段类型

// 在t_student表中增加一个名字叫height的数据类型为integer的字段
alter table t_student add height integer
16、删除字段

删除t_student表中age字段

  1. 将需要修改的表(t_student)重新命名
    alert table "t_student" rename to new_t_student;

  2. 创建一个新的表命名为t_student,填入需要的字段名
    create table t_student (id integer primary key autoincrement, name text) ;

  3. 查询原来表(new_t_student)数据,向新创建的表(my_table)新增数据
    insert into "t_student" ("id","name") select "id","name" from new_t_student;

  4. 销毁原来的表(new_t_student)

17、修改字段

操作同删除字段一样

sqlite学习地址:https://www.xp.cn/e/sql/

上一篇下一篇

猜你喜欢

热点阅读