Sqlite常用语句

表的创建

create table users(userid varchar(20) PRIMARY KEY, age int, birthday datetime);

  

插入

insert into users values('wang',20,'1989-5-4');

  

查询

select * from users;
原文地址:https://www.cnblogs.com/laohehexiaohe/p/4267737.html