SQLite3 笔记

SQLite insert
插入一行:
插入一组:
使用select结果插入
多行插入到新表:
多行插入到新表,一步到位:
非常有用的临时表:
sqlite update
更新一条记录:
update 注意 约束
sqlite delete
约束:
唯一约束unique
autoincrement
主键约束
域约束:默认值
时间戳默认值
NOT NULL 约束
check 约束
check 约束 复杂
外键约束
SQLite 
存储类
视图
索引
触发器
视图触发器:可更新的视图
事务
冲突

SQLite insert

查看表结构:

sqlite> .schema foods
CREATE TABLE foods(
  id integer primary key,
  type_id integer,
  name text );

插入一行:

sqlite> insert into foods (name,type_id) values(‘Cinnamon Bobka‘, 1);

sqlite> insert into foods values(NULL, 1, ‘Blueberry Bobka‘);

验证:
sqlite> select * from foods where name like ‘%bobka‘;
id          type_id     name           
----------  ----------  ---------------
10          1           Chocolate Bobka
13          1           Cinnamon Bobka 
413         1           Cinnamon Bobka 
414         1           Blueberry Bobka

插入一组:

sqlite> insert into foods values(null, (select id from food_types where name=‘Bakery‘), ‘Blackberry Bobka‘);
sqlite> select * from foods where name like ‘%bobka‘;
id          type_id     name           
----------  ----------  ---------------
10          1           Chocolate Bobka
13          1           Cinnamon Bobka 
413         1           Cinnamon Bobka 
414         1           Blueberry Bobka
415         1           Blackberry Bobk
sqlite>

使用select结果插入

sqlite> insert into foods 
   ...> select last_insert_rowid()+1, type_id, name from foods where name =‘Chocolate Bobka‘;
sqlite> select * from foods where name like ‘%bobka‘;
id          type_id     name           
----------  ----------  ---------------
10          1           Chocolate Bobka
13          1           Cinnamon Bobka 
413         1           Cinnamon Bobka 
414         1           Blueberry Bobka
415         1           Blackberry Bobk
416         1           Chocolate Bobka
sqlite> 

[注意]:字段个数要匹配,数据类型也要匹配:
否则,失败。
sqlite> .schema foods
CREATE TABLE foods(
  id integer primary key,
  type_id integer,
  name text );
sqlite> insert into foods select last_insert_rowid()+100, name, type_id from foods where name =‘Chocolate Bobka‘;
Error: UNIQUE constraint failed: foods.id
sqlite>

多行插入到新表:

sqlite> create table foods2 (id int, type_id int, name text);
sqlite> insert into foods2 select * from foods;
sqlite> select count(*) from foods2;
count(*)  
----------
416       
sqlite>

多行插入到新表,一步到位:

sqlite> create table foods3 as select * from foods;
sqlite> select count(*) from foods3;
count(*)  
----------
416       
sqlite>

非常有用的临时表:

sqlite> 
create temp table list as
select f.name food, t.name name,
(select count(episode_id) from foods_episodes where food_id=f.id) episodes
from foods f, food_types t
where f.type_id = t.id;

sqlite> select * from list;
food        name        episodes  
----------  ----------  ----------
Bagels      Bakery      1         
Bagels, ra  Bakery      2         
Bavarian C  Bakery      1         
Bear Claws  Bakery      3         
Black and   Bakery      2         
Bread (wit  Bakery      1         
Butterfing  Bakery      1         
Carrot Cak  Bakery      1         
Chips Ahoy  Bakery      1

使用 create table 的这种形式,自增长字段在新表中创建,索引也不会创建,UNIOUE约束都不会被创建。

插入行时的 unique 约束,如果在定义为 unique 的字段中插入重复值,SQLite 会停止并报错。

sqlite> insert into foods values (416, 1, ‘Chocolate Bobka‘);
Error: UNIQUE constraint failed: foods.id
sqlite>

sqlite update

更新一条记录:

sqlite> update foods set name=‘CHOCOLATE BOBKA‘ where name=‘Chocolate Bobka‘;
sqlite> select * from foods where name like ‘CHOCOLATE%‘;
id          type_id     name           
----------  ----------  ---------------
10          1           CHOCOLATE BOBKA
11          1           Chocolate Eclai
12          1           Chocolate Cream
222         9           Chocolates, box
223         9           Chocolate Chip 
224         9           Chocolate Cover
416         1           CHOCOLATE BOBKA
sqlite>

update 注意 约束

sqlite> .schema foods
CREATE TABLE foods(
  id integer primary key,
  type_id integer,
  name text );
sqlite> 

sqlite> update foods set id=11 where name=‘CHOCOLATE BOBKA‘;
Error: UNIQUE constraint failed: foods.id
sqlite>

sqlite delete

sqlite> delete from foods where name=‘CHOCOLATE BOBKA‘;

约束:

唯一约束unique

create table contacts (
int integer primary key,
name text not null collate nocase,
phone text not null default ‘UNKNOWN‘,
unique (name, phone) 
);

insert into contacts (name, phone) values (‘Jerry‘, ‘UNKNOWN‘);

autoincrement

autoincrement 并不会使用未被使用的数字,而是自动递增,但不会阻挡你自己提供的值

sqlite> create table maxed_out(id integer primary key autoincrement, x text);
sqlite> insert into maxed_out values(10,‘wors‘);
sqlite> select * from maxed_out;
id          x         
----------  ----------
10          wors      

sqlite> insert into maxed_out values (9223372036854775807,‘last one‘);
sqlite> select * from maxed_out;
id          x         
----------  ----------
10          wors      
9223372036  last one  

sqlite> insert into maxed_out values (NULL,‘will not work‘);
Error: database or disk is full
sqlite>

主键约束

约束:主键约束 primary key 不允许存在同样的

sqlite> create table pkey(x text, y text, primary key(x,y));
sqlite> insert into pkey values (‘x‘,‘y‘);
sqlite> insert into pkey values (‘x‘,‘x‘);
sqlite> select rowid, x, y from pkey;
rowid       x           y         
----------  ----------  ----------
1           x           y         
2           x           x         
sqlite> insert into pkey values (‘x‘,‘x‘);
Error: UNIQUE constraint failed: pkey.x, pkey.y
sqlite>

域约束:默认值

域约束:默认值,NULL, NOT NULL ,check,sort

1, default 默认值
create table contacts (
int integer primary key,
name text not null collate nocase,
phone text not null default ‘UNKNOWN‘,
unique (name, phone) 
);

sqlite> insert into contacts (name) values (‘Tom‘);
sqlite> select * from contacts;
int         name        phone     
----------  ----------  ----------
1           Jerry       UNKNOWN   
2           Jerry       021-110   
3           Tom         UNKNOWN   
sqlite>

时间戳默认值

create table times (
id int,
date not null default current_date,
time not null default current_time,
timestamp not null default current_timestamp);

sqlite> insert into times (id) values (1);
sqlite> insert into times (id) values (2);
sqlite> select * from times;
id          date        time        timestamp          
----------  ----------  ----------  -------------------
1           2017-02-10  06:14:30    2017-02-10 06:14:30
2           2017-02-10  06:14:32    2017-02-10 06:14:32
sqlite>

NOT NULL 约束

sqlite> .schema contacts
CREATE TABLE contacts (
int integer primary key,
name text not null collate nocase,
phone text not null default ‘UNKNOWN‘,
unique (name, phone) 
);
sqlite> insert into contacts (phone) values ("134-1234-5678");
Error: NOT NULL constraint failed: contacts.name
sqlite>

check 约束

create table contacts (
id integer primary key,
name text not null collate nocase,
phone text not null default ‘空号‘,
unique (name,phone),
check (length(phone)>=7)
);

check 约束 复杂

check 约束 复杂
create table foo (
x integer,
y integer check(y>x),
z integer check (z>abs(y))
);
sqlite> insert into foo values (-2, -1, 2);
sqlite> select * from foo;
x           y           z         
----------  ----------  ----------
-2          -1          2         
sqlite> update foo set z=-3 where z=2;
Error: CHECK constraint failed: foo
sqlite>

外键约束

外键约束 http://www.sqlite.org/foreignkeys.html
确保foods的type_id 已存在于food_types的id中。

CREATE TABLE food_types(
  id integer primary key,
  name text );

CREATE TABLE foods(
  id integer primary key,
  type_id integer references food_types(id)
  on delete restrict
  deferrable initially deferred,
  name text );

    NO ACTION: Configuring "NO ACTION" means just that: when a parent key is modified or deleted from the database, no special action is taken.

    RESTRICT: The "RESTRICT" action means that the application is prohibited from deleting (for ON DELETE RESTRICT) or modifying (for ON UPDATE RESTRICT) a parent key when there exists one or more child keys mapped to it. The difference between the effect of a RESTRICT action and normal foreign key constraint enforcement is that the RESTRICT action processing happens as soon as the field is updated - not at the end of the current statement as it would with an immediate constraint, or at the end of the current transaction as it would with a deferred constraint. Even if the foreign key constraint it is attached to is deferred, configuring a RESTRICT action causes SQLite to return an error immediately if a parent key with dependent child keys is deleted or modified.

    SET NULL: If the configured action is "SET NULL", then when a parent key is deleted (for ON DELETE SET NULL) or modified (for ON UPDATE SET NULL), the child key columns of all rows in the child table that mapped to the parent key are set to contain SQL NULL values.

    SET DEFAULT: The "SET DEFAULT" actions are similar to "SET NULL", except that each of the child key columns is set to contain the columns default value instead of NULL. Refer to the CREATE TABLE documentation for details on how default values are assigned to table columns.

    CASCADE: A "CASCADE" action propagates the delete or update operation on the parent key to each dependent child key. For an "ON DELETE CASCADE" action, this means that each row in the child table that was associated with the deleted parent row is also deleted. For an "ON UPDATE CASCADE" action, it means that the values stored in each dependent child key are modified to match the new parent key values.

4,排序

create table contacts (
int integer primary key,
name text not null collate nocase,
phone text not null default ‘UNKNOWN‘,
unique (name, phone) 
);

collate 定义排序规则:
nocase 忽略大小写
组合起来就是:‘Jerry‘与‘jerry‘在插入的时候会被忽略大小写,然后就是一样的,无法二次插入

SQLite

存储类

存储类	描述
NULL	值是一个 NULL 值。
INTEGER	值是一个带符号的整数,根据值的大小存储在 1、2、3、4、6 或 8 字节中。
REAL	值是一个浮点值,存储为 8 字节的 IEEE 浮点数字。
TEXT	值是一个文本字符串,使用数据库编码(UTF-8、UTF-16BE 或 UTF-16LE)存储。
BLOB	值是一个 blob 数据,完全根据它的输入存储。

视图

视图即虚拟表,也称为派生表。因为视图的内容来自其他的查询结果。
视图不是基本表,尽管感觉起来与表是一样的。基本表的内容是持久的,视图是动态产生的。

视图的起源:如果需要频繁查此表
select f.name, ft.name, e.name
from foods f
inner join food_types ft on f.type_id=ft.id
inner join foods_episodes fe on f.id=fe.food_id
inner join episodes e on fe.episode_id=e.id;

创建视图:SQLite不支持可更新的视图
create view details as
select f.name as fd, ft.name as tp, e.name as ep, e.season as ssn
from foods f
inner join food_types ft on f.type_id=ft.id
inner join foods_episodes fe on f.id=fe.food_id
inner join episodes e on fe.episode_id=e.id;

sqlite> select * from details limit 10;
fd          tp          ep          ssn       
----------  ----------  ----------  ----------
Bagels      Bakery      The Strike  9         
Bagels, ra  Bakery      The Strike  9         
Bagels, ra  Bakery      The Muffin  8         
Bavarian C  Bakery      The Soup N  7         
Bear Claws  Bakery      The Strong  9         
Bear Claws  Bakery      The Sniffi  5         
Bear Claws  Bakery      The Rainco  5         
Black and   Bakery      The Dinner  5         
Black and   Bakery      The Unders  6         
Bread (wit  Bakery      The Apolog  9         
sqlite> 

删除视图:
drop view details;

索引

索引:
索引是一种用来在某种条件下加速查询的结构。

创建唯一索引
sqlite> drop table foo;
sqlite> create table foo(id integer,name text);
sqlite> create unique index foo_index on foo(id,name);
sqlite> insert into foo(id,name) values(250,‘老王‘); 
sqlite> insert into foo(id,name) values(11,‘张三‘); 
sqlite> insert into foo(id,name) values(250,‘老王‘); 
Error: UNIQUE constraint failed: foo.id, foo.name
sqlite> select * from foo;
id          name      
----------  ----------
250         老王    
11          张三    
sqlite> 

删除索引:
sqlite> drop index foo_index;

创建大小写不敏感索引

sqlite> create index foods_name_idx on foods (name collate nocase);

sqlite> .indices 
foods_name_idx

sqlite> .schema foods
CREATE TABLE foods(
  id integer primary key,
  type_id integer,
  name text );
CREATE INDEX foods_name_idx on foods (name collate nocase);
sqlite>

触发器

当具体的表发生特定的数据库事件时,触发器执行对应的SQL命令

未更新的行用old引用,已更新的行用new引用
所有属性都可以用点来引用

create temp table log(x);
create temp trigger foods_update_log update of name on foods
begin
    insert into log values(‘update foods:new name=‘||new.name);
end;

begin;
update foods set name=‘JUJYFRUIT‘ where name=‘JujyFruit‘;
select * from log;
rollback;

执行结果:
sqlite> create temp table log(x);
sqlite> create temp trigger foods_update_log update of name on foods
   ...> begin
   ...>     insert into log values(‘update foods:new name=‘||new.name);
   ...> end;
sqlite> 
sqlite> begin;
sqlite> update foods set name=‘JUJYFRUIT‘ where name=‘JujyFruit‘;
sqlite> select * from log;
x                              
-------------------------------
update foods:new name=JUJYFRUIT
sqlite> rollback;
sqlite> 

shell执行结果:
[email protected]:~/work/sqlite$ cat trigger.sql 
create temp table log(x);
create temp trigger foods_update_log update of name on foods
begin
    insert into log values(‘update foods:new name=‘||new.name);
end;

begin;
update foods set name=‘JUJYFRUIT‘ where name=‘JujyFruit‘;
select * from log;
rollback;

[email protected]:~/work/sqlite$ sqlite3 foods.db < trigger.sql 
update foods:new name=JUJYFRUIT
[email protected]:~/work/sqlite$

视图触发器:可更新的视图

[email protected]:~/work/sqlite$ cat trigger.sql 
--创建视图
create view foods_view as
    select f.id fid, f.name fname, t.id tid, t.name tname
    from foods f, food_types t;

--创建触发器
create trigger on_update_foods_view instead of update on foods_view
for each row
begin
    update foods set name=new.fname where id=new.fid;
    update food_types set name=new.tname where id=new.tid;
end;

--小实验,更新视图的数据,自动同步到基础表
begin;
    update  foods_view set fname=‘乐事薯片‘, tname=‘Fast Food‘ where fid=413;
    --查询底层表
    select * from foods f, food_types t where f.type_id=t.id and f.id=413;
rollback;

--查询底层表
select * from foods f, food_types t where f.type_id=t.id and f.id=413;

drop view foods_view;

[email protected]:~/work/sqlite$ sqlite3 foods.db < trigger.sql 
413|1|乐事薯片|1|Fast Food
413|1|Whataburger|1|Fast Food
[email protected]:~/work/sqlite$

事务

SQLite事务:
BEGIN [point] / COMMIT[point]/ROLLBACK[point]

默认情况下:SQLite事务是自动提交,执行成功则提交,执行失败则回滚。

begin 事务开始,之后的所有事务都可以取消
commit 提交
rollback 事务回滚

sqlite> begin;
sqlite> delete from foods;
sqlite> select count(*) from foods;
0
sqlite> rollback;
sqlite> select count(*) from foods;
414
sqlite> 
=======================================================
回滚到事务点:
sqlite> begin;
sqlite> select count(*) from foods;
414
sqlite> delete from foods;
sqlite> select count(*) from foods;
0
sqlite> savepoint point1;
sqlite> select count(*) from food_types;
15
sqlite> delete from food_types;
sqlite> select count(*) from food_types;
0
sqlite> rollback to point1;
sqlite> select count(*) from food_types;
15
sqlite> rollback;
sqlite> select count(*) from foods;
414
sqlite>

冲突

冲突解决:
SQLite提供5种冲突解决方案:
replace 违反的记录被删除,以新记录代替之
ignore 	违反的记录保持原貌,其它记录继续执行
fail 	终止命令,违反之前执行的操作得到保存
abort 	终止命令,恢复违反之前执行的修改
rollback终止命令和事务,回滚整个事务

语法:

    语句级(可覆盖对象级的冲突解决手段)
    insert/update/create or [resolution] table/index [tbl_name/idx_name] ……
    [resolution]: replace、ignore、fail、abort、rollback

    对象级(定义表格时)
    create table/index [tbl_name/idx_name] ([field_name] [format] [constraint] on conflict [resolution]);
    [constraint]:unique、not null……

sqlite> update foods set id=800-id;
Error: UNIQUE constraint failed: foods.id

sqlite> update or abort foods set id=800-id;
Error: UNIQUE constraint failed: foods.id

sqlite> update or replace foods set id=800-id;
sqlite>
时间: 2024-10-06 12:54:12

SQLite3 笔记的相关文章

Sqlite3笔记

.tables 查看表.databases 创建数据库alter table 表名 RENAME TO 新表名ALTER TABLE 表名 add column 列名 datatype [DEFAULT expr].schema user 查看user表的列项drop table 表名 删除表 CREATE TABLE emloyees( Id INTEGER not null, name TEXT, sex INTEGER, birthday INTEGER, entry_date INTEG

树莓派学习笔记——交叉编译练习之SQLite3安装

0.前言 本博文可能并没有太多使用价值.不过为了练习而练习.在树莓派上使用SQLite有非常多的方法,安装的方法也有非常多. [1]假设使用Python,那么不必安装SQLite由于Python已经自带SQLite. [2]能够使用apt-get安装.仅仅是SQLite的版本稍低些. [3]能够使用源码安装,在树莓派上直接编译,尽管树莓派的运算速度不如PC机.可是稍等几分钟也能编译安装完毕. [4]假设你想练习一下交叉编译,请阅读下面内容吧. [本文目的] [1]怎样交叉编译源码包 [2]交叉编

sqlite3 命令行笔记

以前几乎没怎么用过sqlite3,简单入门记下点东西-.0,希望不要被大拿看到. 工具是sqlite professional应该是个轻量级的软件,我也没有配置什么的,mac上直接拖入了application里就自动有里sqlite3命令行了,不知道linux和windows用么. 先cd 到一个自己工作目录. 执行命令: $sqlite3 <your sql file name>; $.database 两条命令创建出了自己的数据库文件 可能软件不需要这些底层的命令,只是为了配合更好了解软件

iOS开发笔记--sqlite3 语句总结

1.sqlite3存储数据的类型NULL:标识一个NULL值INTERGER:整数类型REAL:浮点数TEXT:字符串BLOB:二进制数 2. sqlite3存储数据的约束条件Sqlite常用约束条件如下:PRIMARY KEY - 主键:1)主键的值必须唯一,用于标识每一条记录,如学生的学号2)主键同时也是一个索引,通过主键查找记录速度较快3)主键如果是整数类型,该列的值可以自动增长NOT NULL - 非空:约束列记录不能为空,否则报错UNIQUE - 唯一:除主键外,约束其他列的数据的值唯

Python学习笔记21:数据库操作(sqlite3)

Python自带一个轻量级的关系型数据库SQLite.这一数据库使用SQL语言. SQLite作为后端数据库,可以搭配Python建网站,或者制作有数据存储需求的工具. SQLite还在其它领域有广泛的应用,比如HTML5和移动端.Python标准库中的sqlite3提供该数据库的接口. 一 数据库设计 我将创建一个简单的关系型数据库,为一个书店存储书的分类和价格. 数据库中包含两个表:category用于记录分类,book用于记录某个书的信息. 一本书归属于某一个分类,因此book有一个外键(

iOS: 学习笔记, 使用FMDatabase操作sqlite3

使用FMDatabase操作sqlite3数据库非常简单和方便 1 // 2 // main.m 3 // iOSDemo0602_sqlite3 4 // 5 // Created by yao_yu on 14-6-2. 6 // Copyright (c) 2014年 yao_yu. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 #import "FMDatabase.h" 11 12 void te

sqlite学习笔记8:C语言中使用sqlite之创建表

前面已经说了如何打开和关闭数据库,这次要说得是如何执行SQL语句,来创建一张表. 要用的的函数: sqlite3_exec(sqlite3* db, const char *sql, sqlite_callback callback, void *data, char **errmsg) 参数: db:已经打开的数据库实例 sql:SQL语句,是一个字符串 callback:是一个回调函数 data:做为回调函数的第一个参数 errmsg:用于带回错误信息 该回调函数有两种返回值类型. 1.返回

SQLite:自学笔记(1)——快速入门

SQLite的安装和入门 了解 简单了解SQLite SQLite是一种轻巧迷你的关系型数据库管理系统.它的特点如下: 不需要一个单独的服务器进程或操作的系统(无服务器的). SQLite 不需要配置,这意味着不需要安装或管理. 一个完整的 SQLite 数据库是存储在一个单一的跨平台的磁盘文件. SQLite 是非常小的,是轻量级的,完全配置时小于 400KiB,省略可选功能配置时小于250KiB. SQLite 是自给自足的,这意味着不需要任何外部的依赖. SQLite 事务是完全兼容 AC

web开发框架Django笔记整理

安装 python  setup.py  install 使用 1.创建工程 django-admin.py startproject Data_Collet_Center 2.运行开发server python manage.pyrunserver 0.0.0.0:8000 3.创建应用 python manage.py startapp DCC 4.配置 Data_collect_Center/settings.py 配置DB: 'ENGINE': 'django.db.backends.s