安卓SQLite

安卓SQLite

一)、简介:
Android通过 SQLite 数据库引擎来实现结构化数据的存储。在一个数据库应用程序中,任何类都可以通过名字对已经创建的数据库进行访问,但是在应用程序之外就不可以。
SQLite 数据库是一种用C语言编写的嵌入式数据库,它是一个轻量级的数据库,最初为嵌入式设计的。
它是在一些基础简单的语句处理上要比oracle / mysql快很多,而且其对内存的要求很低,在内存中只需要几百KB的存储空间。这是Android中采用 SQLite 数据库的主要原因。
SQLite 支持事务处理功能,TransactionSQLite 处理速度比MySQL等著名的开源数据库系统更快;它没有服务器进程。
SQLite 通过文件保存数据库,该文件是跨平台的,可以自由复制。一个文件就是一个数据库,数据库名即文件名。JDBC会消耗太多系统资源,所以JDBC对于手机并不合适,因此Android提供了新的API来使用 SQLite 数据库。

一.数据库查询语句:select

  1. 查询所有数据:
    select * from 表名;
    select * from exam_books;

2.按照一定的条件查找:
select * from 表名 where 条件;
select * from exam_books where id<20;

3.范围条件查询:
select * from 表名 where 字段 between 值1 and 值2 ;
select * from exam_books where id<20 and id>10;
select * from exam_books where id between 10 and 20;
select * from exam_books where addtime between ‘1998-10-04 00:00:00’ and ‘1998-10-05 00:00:00’;

4.模糊查询:
select * from 表名 where 字段 like ‘%条件%’;
select * from exam_books where bookname like ‘%马克思%’;
select * from exam_books where bookname like ‘马__’;
(查询书名中第一个字是“马”,后面有两个字)

5.复合查询:
select * from 表名 where 条件 and 另一个条件;
select * from exam_questions where coursecode = ‘03706’ and chapterid = 2;

6.查询个数:
select count() from 表名 where 条件
select count(
) as 别名 from exam_questions where coursecode = ‘03706’ and chapterid = 2;

7.查询结果按顺序排列:
正序、倒序(asc/desc)
select * from 表名 where 条件 order by 字段 desc/asc;
select * from exam_questions where coursecode = ‘100519’ order by chapterid;

8.按照limit查找某个范围内的数据:
SELECT * FROM exam_questions order by id asc limit 0, 15;(代表查找出的第一页的信息)
SELECT * FROM exam_questions order by id asc limit 15, 15;(代表查找出的第二页的信息)
【备注:】limit后面的两个数字中:第一个代表偏移量,第二个代表每页展示的数量

二. 删除数据:delete
delete from 表名 where 条件;
delete from exam_questions where id<2000;
delete from exam_questions where coursecode=‘00041’ and chapterid=1;

三.插入新数据:insert
insert into 表名(字段) values(值);

四.更新数据:update
update 表名 set 字段1=值1, 字段2=值2 where 条件;

五、创建表结构的语句:
CREATE TABLE 表名 (_id INTEGER PRIMARY KEY AUTOINCREMENT , 字段2, 字段3…)

六、更新表结构的语句:
1、如需在表中添加列,请使用下列语法:
ALTER TABLE table_name
ADD column_name datatype
2、要删除表中的列,请使用下列语法:
ALTER TABLE table_name
DROP COLUMN column_name
3、要改变表中列的数据类型,请使用下列语法:
ALTER TABLE table_name
ALTER COLUMN column_name datatype

本文地址:https://blog.csdn.net/qq_46084899/article/details/107164945

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐