- 创建数据表
删除数据表DROP TABLE IF EXISTS "t"; CREATE TABLE "t" ( "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "ip" char(15) NOT NULL, "money" real NOT NULL );
DROP TABLE IF EXISTS "t";
查看表是否创建.tables
查看创建表语句.schema
插入数据insert into t(id,ip,money) values(null,1,1.1)
查询select * from t
去除重复记录SELECT DISTINCT name FROM t;
更新update t set ip=3 where id=1
删除delete from t where id=1
清空表delete from t
select * from a cross join b
交叉连接select * from a inner join b on 条件
内连接select * from a left outer join b on 条件
左连接,不支持全链接右链接select * from a union select * from b
合并结果,union all包括重复行select ids id from table t;
支持别名可以省略ascreate index i on t(id)
单列索引 唯一索引create unique index
不能重复数据create index i on t(id,id2)
组合索引drop index i
删除索引alter table t rename to t1
重命名alter table t add column id
添加列 不支持其他功能alter
LIMIT 8 OFFSET 0 从0开始取8条 和mysql不同哦
begin 开始事务
rollback 回滚
commit 提交事务 函数
date(‘2018-12-26’) 无参数返回当前年月日
strftime(‘%s’,’now’) 时间戳
datetime(‘now’)
time(‘now’)
datetime(‘now’,’+8 hour’)
聚合函数count avg sum random max min
文档更新时间: 2021-11-03 16:35 作者:Yoby