最近搞sqlite 資料庫,整理一下,備忘。
1. 安裝
sudo yum install sqlite-devel;
2.基本操作:
建立資料庫 sqlites test.db;
建立資料表 create table testtable(id int primery key, name varchar(20));
向表中插入資料 insert into testtable(id,name)values(1,「tom」);
查詢 .mode column 將表的列設定為顯示
.header on 顯示列名
select * from testtable
id name
1 tom
3. sqlite 基本語句
判斷資料庫中是否存在某個表:select 1 from sqlite_master where type = 'table' and name = 'book';
判斷表中是否存在某欄位:select 1 from sqlite_master where type = 'table' and name= 'book' and sql like '%idtest%';
建表語句:create table book(id varchar(20) primary key , name varchar(100), info varchar(100));
新增字段:alter table book add descinfo varchar(100);
建立索引:create index book_index1 on book(id);
新增:insert into book(id, name, info) values('01', 'qt程式設計', '這是一本好書');
刪除:delete from book where id = '01';
更新:update book set name = 'test' where id = '01';
精確搜尋:select * from book where id = '01';
模糊搜尋:select * from book where name like '%:strbookname%' escape '!';
4.在終端顯示資料庫
定位到要建立或者是開啟的資料庫檔案所在目錄 sqlite3 test.db;
之後在執行顯示所有表 .tables;
查詢資料 select * from testtable;
SQLite的安裝與基本操作
建立資料夾 c sqlite,並在此資料夾下解壓上面兩個壓縮檔案,將得到 sqlite3.def sqlite3.dll 和 sqlite3.exe 檔案。新增 c sqlite 到 path 環境變數,最後在命令提示符下,使用sqlite3命令,將顯示如下結果。很多linux都自帶sqlite,使...
SQLite3 安裝 基本操作
1.安裝sqlite3 sudo apt get install sqlite3 2.安裝sqlite3編譯需要的工具包 如果,你需要的話可以安裝該工具包。只是為了體驗一把,可以不安裝。該項是可選項。apt get install libsqlite3 dev 3.檢查安裝是否成功 執行下面命令,會...
SQLite基本操作
sqlite的基本操作 建庫 建表 插入資料 修改資料 刪除資料 刪除表 刪除庫。1 建庫 在命令列下輸入 sqlite3 test.db 注意當前是什麼使用者如果是root使用者則該庫建立在 home目錄下,其他使用者庫建立在使用者的根目錄下 sqlite database 顯示建立的資料庫 2 ...