sqlite常用語句

2021-09-24 10:42:14 字數 801 閱讀 1433

sqlite3.exe 資料庫名字.db

create table 表名 (表名 字段型別,表名 字段型別,......)

.databases

.tables

.schema 表名

.header on.mode column

select *from 表名

delete from 表名 where 條件

insert into table_name (column1, column2,column3,...column)values (value1, value2, value3,...value);

integer primary key autoincrement

alter table student add column name varchar;

update table_name set column1 = value1, column2 = value2...., column = value where [condition];

1.建立乙個類物件:

query=qsqlquery()

通過query.exec("sql語句")

通過query.next()便利表中每行的資料

通過query.value(列數)去獲取具體欄位的值

發表於

2018-07-04 14:19

天碼丶行滿 閱讀(

...)

編輯收藏

重新整理頁面

返回頂部

SQLite常用語句

型別 描述null 值是乙個空值 integer 帶符號的整數,根據值得大小儲存在1 2 3 4 6或8位元組中。相容 等同於 其他資料庫的int,integer,tinyint,smallint,mediumint,bigint,unsigned big int,int2,in8 real 浮點值...

sqlite常用語句

select from yanyou copy1 order by cast ctime as int limit 0,10 select from yanyou copy1 order by cast ctime as int desc limit 0,10 select count from y...

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...