SQLite数据库简单操作

前端之家收集整理的这篇文章主要介绍了SQLite数据库简单操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

/*

sql语句

1.创建一个表

CREATE TABLE 表的名字(字段的名字 类型(text 是否是主键,...

eg:

CREATE TABLE Students (id integer PRIMARY KEY,

name text NOT NULL,0)"> age integer,0)"> sex varchar DEFAULT )

2.插入语句

insert into 表的名字 (字段的名字,... values (内容,...)

insert into students (id,name,age,sex)values(003,'王五',32,'')

3.查询

select *(指定所要查询字段的名字) from 表的名字 where .. order by 字段 desc

01 如果需要添加条件 在表的名字后面 添加where name like '%%'

02&& and || = or

03 对数据进行一个排序 order by 字段 desc(降序)

select * from students

select name from students

select name,id from students

三%'

三%' order by id desc//降序排列[默认升序]

4.修改

update 表的名字 set name = '李四',... where...

5.删除

delete from 表的名字 where...

*/

原文链接:https://www.f2er.com/sqlite/200154.html

猜你在找的Sqlite相关文章