SQLite3介绍及SQL语句详解(SQLite一)

目录

  • 一、SQLite3介绍
    • 1.数据库存储数据
    • 2.数据库数据类型
    • 3.window下qtcreator上编译sqlite3数据
  • 二、SQL语句
    • 1.创建数据表格
    • 2.插入数据
    • 3.查询数据
      • (1)查询
      • (2)条件查询
      • (3)两个条件必须同时成立(与)-and
      • (4)两个条件只要成立一个(或)-or
    • 4. 更新数据
    • 5. 删除数据
    • 6.查询创建表命令
    • 7.alter添加字段
    • 8.pragma 查询表结构信息
    • 9.创建带约束数据表
      • (1)创建数据表
      • (2)插入数据
    • 10.删除表

一、SQLite3介绍

1.数据库存储数据

数据结构 数据仓库:
SQLite3介绍及SQL语句详解(SQLite一)_第1张图片

2.数据库数据类型

名称 数据长度 类型
int -2^31(-2,147,483,648) 到 2^31(2,147,483,647) 整型数字
float -1.79E+308到1.79E+308 可变精度的数字
real -3.04E+38到3.04E+38 可变精度的数字
char 最大长度为8000 定长非Unicode的字符型数据
varchar 最大长度为8000 变长非Unicode的字符型数据
text 最大长度为2^31-1(2G) 变长非Unicode的字符型数据

3.window下qtcreator上编译sqlite3数据

在qt creator上创建c语言工程,并且在工程中添加数据代码

把数据代码拷贝到工程目录下在添加–把工程中的main.c里面的主函数名修改下main_test 避免冲突
SQLite3介绍及SQL语句详解(SQLite一)_第2张图片
如果是linux系统要在工程文件中添加 LIBS += -lpthread -ldl

二、SQL语句

数据通用语句 命令行语句结束要加;(分号)

以此为例:

varchar(256) varchar(256) text char(32)
number(编号) name(姓名) address(地址) QQ
20200101 张三 广州 911683830
20200102 李四 广州 911683831

1.创建数据表格

create  table  表名( 字段名 数据类型  , 字段名 数据类型, 字段名  数据类型, 字段名  数据类型)

例:

create table student(number varchar(256), name varchar(256), address text, QQ char(32));

2.插入数据

insert into 表名  values('字段数据''字段数据''字段数据''字段数据' );

例:

insert into student values('20200101', '张三', '广州','911683830');
insert into student values('20200102', '李四', '广州','911683831');

3.查询数据

(1)查询

select  字段名...字段名  from  表名;

说明:字段名如果是多个可以用逗号隔开,如果是所有可以用星号*

例:

select * from student ;

select name, qq from student;

(2)条件查询

select  字段名...字段名  from  表名  where 条件;

例:

select * from student where address='广州';

select * from student where address like '广%';

条件里面的where address=‘广州’; 等于号表示必须一样, 如果是模糊查询address like ‘广%’;

(3)两个条件必须同时成立(与)-and

select  字段名...字段名  from  表名  where 条件 and 条件;

例:

select * from student where address like '广%' and  QQ like '%1';

(4)两个条件只要成立一个(或)-or

select  字段名...字段名  from  表名  where 条件 or 条件;

例:

select * from student where address like '广%' or  QQ like '%1';

4. 更新数据

update 表名 set 字段1=字段1, 字段2=字段2值… where 条件表达式;

例:、

update student set qq='199999999999' where name='岳飞';

5. 删除数据

delete  from 表名;//删除整个表数据,不会删除表格

delete  from 表名  where  条件;

例:

delete from student where number='20200103';

6.查询创建表命令

.schema 表名

例:

.schema student

7.alter添加字段

alter table 表名 add column 字段 类型 (default '默认值');

例:

alter table student add column age int ;

alter table student add column sex varchar(8) default '男' ;

8.pragma 查询表结构信息

pragma table_info(表名);

例:

pragma table_info(student);

9.创建带约束数据表

创建表格的时候设置字段约束

PRIMARY KEY主键,NOT NULL不能为NULL,UNIQUE唯一,DEFAULT默认值,ID INTEGER PRIMARY KEY AUTOINCREMENT id自动增长

以此表格为例:

id name status online
1 led 0 0
2 led1 1 1
3 led2 0 1

(1)创建数据表

create  table  device  (id  integer primary key autoincrement,
                         name  varchar(256) unique ,
                         status int not NULL default 0,
                         online int not NULL);

创建时加入条件(表不存在是创建):

create table if not exists device(id integer primary key autoincrement, 
                                  name varchar(256) unique, 
                                  status int default 0, 
                                  online int not NULL);

(2)插入数据

insert into device values(0,'led',0,0);

当主键或不可重复的字段出现重复时,插入失败

insert into device values(0,'led',0,0);
Error: UNIQUE constraint failed: device.id
insert into device values(1,'led',0,0);
Error: UNIQUE constraint failed: device.name

指定字段(列)插入–>没有指定的就可以用默认值

insert into device(name, online) values('led2',0);
insert into device(name, online) values('led3',0);

10.删除表

drop  table  表名

例:

drop table test;

你可能感兴趣的:(qt,数据库,sqlite,sql,数据库,qt)