IOS SQL基础

一. SQL语句种类

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

包括创建表create(create table),删除表drop(drop table)

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

包括insert update delete表中数据

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

包括select

二. 创建表

格式:
  • create table 表名 [字段名1 字段类型1,字段名2 字段类型2...];
  • create table if not exists 表名 [字段名1 字段类型1,字段名2 字段类型2...];
示例:

create table t_student[id interger,name text];

三. 字段类型

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

!其实SQLLite字段类型是可以任意或者不写的(除了主键),但是为了交流方便,还是写上

你可能感兴趣的:(IOS SQL基础)