iOS数据库存储之SQL语句

作者: asaBoat | 来源:发表于2017-05-07 23:36 被阅读359次

    资源连接:

    iOS数据库存储之SQLite3;

    iOS数据存储之文件沙盒;

    iOS数据存储之NSCoding;

    SQL语句参考;

    数据库存储单元

    1. 数据库的存储结构和excel很像,以表(table)为单位。
    2. 数据库存储数据的步骤
    • 新建一张表(table)
    • 添加多个字段(column,列,属性)
    • 添加多行记录(row,record,每行存放多个字段对应的值)

    SQL语言

    简介

    SQL(structured query language):结构化查询语言

    SQL是一种对关系型数据库中的数据进行定义和操作的语言

    SQL语言简洁,语法简单,好学好用

    使用SQL语句能在程序运行过程中操作数据库中的数据

    SQL语句

    使用SQL语言编写出来的句子\代码,就是SQL语句,在程序运行过程中,要想操作(增删改查,CRUD)数据库中的数据,就要使用SQL语句。

    SQL语句特点

    1. 不区分大小写(比如数据库认为user和UsEr是一样的)。
    2. 每条语句都必须以分号 ; 结尾。

    SQL中的常用关键字

    select、insert、update、delete、from、create、where、desc、order、by、group、table、alter、view、index等。数据库中不可以使用关键字来命名表、字段。

    SQL语句的种类

    1. 数据定义语句(DDL:Data Definition Language)

    包括create和drop等操作,在数据库中创建新表或删除表(create table或 drop table)。

    1. 数据操作语句(DML:Data Manipulation Language)

    包括insert、update、delete等操作上面的3种操作分别用于添加、修改、删除表中的数据。

    1. 数据查询语句(DQL:Data Query Language)

    可以用于查询获得表中的数据,关键字select是DQL(也是所有SQL)用得最多的操作,其他DQL常用的关键字有where,order by,group by和having。

    SQLite存储类型

    SQLite将数据划分为以下几种存储类型:

    1. integer : 整型值
    2. real : 浮点值
    3. text : 文本字符串
    4. blob : 二进制数据(比如文件)

    实际上SQLite是无类型的
    就算声明为integer类型,还是能存储字符串文本(主键除外)
    建表时声明啥类型或者不声明类型都可以,也就意味着创表语句可以这么写:create table t_student(name, age);

    为了保持良好的编程规范、方便程序员之间的交流,编写建表语句的时候最好加上每个字段的具体类型

    SQLite的SQL语句使用

    创表

    1. 格式

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

    2. 示例

      create table t_student (id integer, name text, age inetger, score real) ;

    删表

    1. 格式

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

    1. 示例

    drop table t_student ;

    插入数据

    1. 格式

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

    1. 示例

      insert into t_student (name, age) values (‘mj’, 10) ;

    2. 注意

      数据库中的字符串内容应该用单引号 ’ 括住

    更新数据

    1. 格式

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

    1. 示例

    update t_student set name = ‘jack’, age = 20 ;

    1. 注意

    上面的示例会将t_student表中所有记录的name都改为jack,age都改为20

    删除数据

    1. 格式

    delete from 表名 ;

    1. 示例

    delete from t_student ;

    1. 注意

    上面的示例会将t_student表中所有记录都删掉

    条件语句

    1. 如果只想更新或者删除某些固定的记录,那就必须在DML语句后加上一些条件,格式如下:

    2. where 字段 = 某个值 ; // 不能用两个 =

    3. where 字段 is 某个值 ; // is 相当于 =

    4. where 字段 != 某个值 ;

    5. where 字段 is not 某个值 ; // is not 相当于 !=

    6. where 字段 > 某个值 ;

    7. where 字段1 = 某个值 and 字段2 > 某个值 ; // and相当于C语言中的 &&

    8. where 字段1 = 某个值 or 字段2 = 某个值 ; // or 相当于C语言中的 ||

    9. where 字段 LIKE 某个值

    10. LIKE 操作符

    LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式。用下面格式举例:

    WHERE 栏位名 LIKE '套式'

    • 'A_Z': 所有以 'A' 起头,另一个任何值的字原,且以 'Z' 为结尾的字串。 'A2Z' 都符合这一个模式,而 'AKKZ' 并不符合 (因为在 A 和 Z 之间有两个字原,而不是一个字原)。
    • 'ABC%': 所有以 'ABC' 起头的字串。举例来说,'ABCD' 和 'ABCABC' 都符合这个套式。
    • '%XYZ': 所有以 'XYZ' 结尾的字串。举例来说,'WXYZ' 和 'ZZXYZ' 都符合这个套式。
    • '%AN%': 所有含有 'AN' 这个套式的字串。举例来说, 'LOS ANGELES' 和 'SAN FRANCISCO' 都符合这个套式。

    查询语句(DQL语句)

    1. 格式

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

    1. 示例

    select name, age from t_student;

    select * from t_student ;

    select * from t_student where age > 10 ; // 条件查询

    起别名

    1. 格式(字段和表都可以起别名)

    select 字段1 别名 , 字段2 别名 , … from 表名 别名 ;

    select 字段1 别名, 字段2 as 别名, … from 表名 as 别名 ;

    select 别名.字段1, 别名.字段2, … from 表名 别名 ;

    1. 示例

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

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

    计算记录的数量

    1. 格式(字段和表都可以起别名)

    select count (字段) from 表名;

    select count ( * ) from 表名;

    1. 示例

    select count (age) from t_student;

    select count ( * ) from t_student where score >= 60;

    排序

    1. 查询出来的结果可以用order by进行排序

    select * from t_student order by 字段 ;

    select * from t_student order by age; 默认升序(asc)

    select * from t_student order by age desc ; //降序

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

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

    limit

    使用limit可以精确地控制查询结果的数量,比如每次只查询10条数据

    1. 格式
      select * from 表名 limit 数值1, 数值2 ;

    2. 示例
      select * from t_student limit 4, 8 ;
      可以理解为:跳过最前面4条语句,然后取8条记录

    3. limit常用来做分页查询,数据库oracle不支持:

    • 第1页:limit 0, 5
    • 第2页:limit 5, 5
    • 第3页:limit 10, 5
    • 第n页:limit 5*(n-1), 5

    select * from t_student limit 7 ;
    相当于select * from t_student limit 0, 7 ;
    表示取最前面的7条记录

    表连接查询

    需要联合多张表才能查到想要的数据,使用关键点是两个表的对应字段。

    1. 类型
    • 内连接:inner join 或者 join (显示的是左右表都有完整字段值的记录)
    • 左外连接:left outer join(保证左表数据的完整性)
    1. 示例

    select s.name,s.age from t_student s, t_class c where s.class_id = c.id and c.name = ‘iOS’;// 查询t_student表中的iOS学生

    tip:连接上百张表是怎么一种体验?

    约束

    之前提到了,数据库是以table的形式存储数据的;为了给表中字段插入业务上合法的数值,可以在创表的时候给table的每一个字段添加相关的约束。

    简单约束

    1. 建表时可以给特定的字段设置一些约束条件,常见的约束有
    • not null :规定字段的值不能为null
    • unique :规定字段的值必须唯一
    • default :指定字段的默认值

    (建议:尽量给字段设定严格的约束,以保证数据的规范性)

    1. 示例

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

    主键约束

    1. 良好的数据库编程规范应该要保证每条记录的唯一性,为此,增加了主键约束:
    • 主键(Primary Key,简称PK)用来唯一地标识某一条记录

    • 例如t_student可以增加一个id字段作为主键,相当于人的身份证

    • 主键可以是一个字段或多个字段(联合主键)

    1. 主键的设计原则
    • 主键应当是对用户没有意义的
    • 永远也不要更新主键
    • 主键不应包含动态变化的数据
    • 主键应当由计算机自动生成
    1. 主键的声明

    在创表的时候用primary key声明一个主键,只要声明为primary key,就说明是一个主键字段。主键字段默认就包含了not null 和 unique 两个约束。如果想要让主键自动增长(必须是integer类型),应该增加autoincrement

    create table t_student (id integer primary key, name text, age integer) ;
    create table t_student (id integer primary key autoincrement, name text, age integer) ;
    
    

    外键约束

    利用外键约束可以用来建立表与表之间的联系,外键的一般情况是:一张表的某个字段,引用着另一张表的主键字段。有约束关心的两个表存在着级联关系,比如更新级联,删除级联等。

    create table tStudent (id integer primary key autoincrement, name text, age integer, classId integer, constraint fk_student_class foreign key (classId) references tClass (id));

    新建一个表 tStudent表中有一个叫做fk_student_class的外键,这个外键的作用是用tStudent表中的classId字段引用tClass表的id字段

    相关文章

      网友评论

        本文标题:iOS数据库存储之SQL语句

        本文链接:https://www.haomeiwen.com/subject/omiptxtx.html