您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“Linux下如何安裝和使用SQLite3”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“Linux下如何安裝和使用SQLite3”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
SQLite3是一種嵌入式數(shù)據(jù)庫,它的數(shù)據(jù)庫就是一個文件。由于SQLite3本身是C寫的,而且體積很小,所以,經(jīng)常被集成到各種應(yīng)用程序中,甚至在iOS和Android的App中都可以集成。
\1. Linux 下安裝sqlite3 需要兩個命令 即可
(1) sudo apt-get install sqlite
(2) sudo apt-get install libsqlite3-dev
\2. 安裝完后,創(chuàng)建一個數(shù)據(jù)庫,終端下輸入命令 【sqlite3 數(shù)據(jù)庫名字 】數(shù)據(jù)庫名字以 .db 結(jié)尾格式
創(chuàng)建數(shù)據(jù)庫student.db 【 sqlite3 student.db 】
\1. 數(shù)據(jù)庫命令
(1) .schema 表名 顯示表結(jié)構(gòu) 如:【 .schema student 】
(2)【 .tables 】 顯示表
(3)【 .quit 】或 【 .exit 】 退出數(shù)據(jù)庫控制界面
\2. 數(shù)據(jù)庫語句
(1)創(chuàng)建一個數(shù)據(jù)表:student 【 create table student (id int primary key,name char,age int,sex char);
(2)向表中插入數(shù)據(jù) insert into 表名 values (值1,值2,值3,值4); 如:【 insert into student values (0,’zhang0′,20,’m’); 】 沒有返回錯誤信息則插入成功
(3)查找語句 select *from 表名;
查找表中所有內(nèi)容顯示 【 select *from student; 】
查找某個字段(列信息)【 select id from student; 】
按照某個條件查找 【 select * from student where age>25 and sex=’m’ 】 { 條件 and or 表示 與 ,或 }
(4)修改某個內(nèi)容 update 表名 set 列名=新值 where 條件; 如:把 zhang0 的名字改為 liwang 【update student set name=‘liwang’ where name=’zhang0‘; 】
(4)刪除一條信息 :delete from 表名 where 條件; 如:刪除名字為hello的一行內(nèi)容 【 delete from student where name=’hello’; 】
(5)添加一列 : alter table 表名 add 列名 數(shù)據(jù)類型; 【alter table student add address char;】
【update student set address=’beijing’;】 把地址字段全部更新為beijing
(5)刪除一個表 drop table 表名; 【 drop table soc; 】
(6)sqlite3不支持刪除一列信息,可以 把原來的表里面的需要的列復(fù)制到一個新表,重新命名:create table 新表名 as select 列名1,列名2,列名3,列名4 from 舊表名;
【 create table stu as select id,name,sex from student; 】 選擇student表中的id,name,sex字段作為新表的字段
(7)重新命名表 :alter table 舊表名 rename to 新表名; 【 alter table stu rename to student_new; 】
(8)select count(*) from sqlite_master where *type=”table” and name = “表名”;*
注意:表示字符串可以是””或者”SQL語句結(jié)束必須是一個分號。
讀到這里,這篇“Linux下如何安裝和使用SQLite3”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。