名称 | 数据长度 | 类型 |
---|---|---|
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的字符型数据 |
在qt creator上创建c语言工程,并且在工程中添加数据代码
把数据代码拷贝到工程目录下在添加–把工程中的main.c里面的主函数名修改下main_test 避免冲突
如果是linux系统要在工程文件中添加 LIBS += -lpthread -ldl
数据通用语句 命令行语句结束要加;(分号)
以此为例:
varchar(256) | varchar(256) | text | char(32) |
---|---|---|---|
number(编号) | name(姓名) | address(地址) | |
20200101 | 张三 | 广州 | 911683830 |
20200102 | 李四 | 广州 | 911683831 |
create table 表名( 字段名 数据类型 , 字段名 数据类型, 字段名 数据类型, 字段名 数据类型);
例:
create table student(number varchar(256), name varchar(256), address text, QQ char(32));
insert into 表名 values('字段数据','字段数据','字段数据','字段数据' );
例:
insert into student values('20200101', '张三', '广州','911683830');
insert into student values('20200102', '李四', '广州','911683831');
select 字段名...字段名 from 表名;
说明:字段名如果是多个可以用逗号隔开,如果是所有可以用星号*
例:
select * from student ;
select name, qq from student;
select 字段名...字段名 from 表名 where 条件;
例:
select * from student where address='广州';
select * from student where address like '广%';
条件里面的where address=‘广州’; 等于号表示必须一样, 如果是模糊查询address like ‘广%’;
select 字段名...字段名 from 表名 where 条件 and 条件;
例:
select * from student where address like '广%' and QQ like '%1';
select 字段名...字段名 from 表名 where 条件 or 条件;
例:
select * from student where address like '广%' or QQ like '%1';
update 表名 set 字段1=字段1值, 字段2=字段2值… where 条件表达式;
例:、
update student set qq='199999999999' where name='岳飞';
delete from 表名;//删除整个表数据,不会删除表格
delete from 表名 where 条件;
例:
delete from student where number='20200103';
.schema 表名
例:
.schema student
alter table 表名 add column 字段 类型 (default '默认值');
例:
alter table student add column age int ;
alter table student add column sex varchar(8) default '男' ;
pragma table_info(表名);
例:
pragma table_info(student);
创建表格的时候设置字段约束
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 |
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);
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);
drop table 表名
例:
drop table test;