QT学习日记——SQlite 增删改查

SQLite 是一个轻量级的零配置数据库
作用:用于数据处理

终端基本操作:(大部分语法对大小写不敏感)
创建表:

    create table stu_tb(
        id integer primary key autoincrement,/*字段加上primary key 表示表中唯一主键,id 设置为自增*/
        name vchar(20) not null, /*不能为空*/
        score double default(0) /*默认设置为值为0*/
    );

    /*插入数据*/
    intsert into stu_tb(name, score)values('tom', 60);
    intsert into stu_tb(name, score)values('jack', 80.5);
    intsert into stu_tb(name, score)values('tonny', 90);
    instert into stu_tb(id, name, score)values(4, 'marry', 70.5); 

    /*查询*/
    select * from stu_tb;

    /*修改*/
    update stu_tb set score = 100 where name = 'tom';

    /*删除*/
    delete from stu_tb where name = 'jack';


你可能感兴趣的:(qt)