第一次接觸資料庫(SQLite)

2022-10-04 02:57:06 字數 1180 閱讀 8796

第一次接觸,學了建立列表 + 行的刪除 + 內容的更改 + 刪除列表

第一次接觸要知道一些基本知識

null(sql) = nnoe(python)  #空值

integer = int  #整數

real = float  #浮點數

text = str #文字

blob = bytes  #二進位制

建立列表  ctr + n    

更改名稱

建立列表

張三 + 年齡 + 成績

語法:create table name(id int ,name text ,'年齡' real, '成績' real);

輸入**後 ctr + r 執行

檢視表中已經有name**了

接著在**中填入資料

細節 ** 變注釋 ctr + / 

語法:insert into name(id , name,'年齡','成績') values(001,'張三',19,89)

執行後檢視

接著再羅列多幾行,熟練一下

記住語法是:insert into  name(key) values()

更新資料語法:update name set '年齡'=300,'成績' = 185 where id=001

熟練多幾句

查詢**語法:select * from name

( * )代表全部

也可以檢視全部列表

語法:select * from name 

查詢區域性:select * from name where id=004

好了,第一次就學了這點內容!!!

SQLite資料庫之第一次親密接觸

sqlite是乙個比較火的免費的輕量級嵌入式資料庫,比較適合桌面程式和小型應用,最新版本可以去官網 它只包含乙個名叫sqlite3.exe的程式,完之後可以將其拷入系統盤windows目錄下,以方便命令列執行命。www.2cto.com 開啟cmd命令列,鍵入 sqlite3 d projects ...

第一次接觸ruby

part one afile file.new e calog.cfu w afile.puts rtwe calllog configuration file afile.puts rerew 2.0 calog afile.puts 日誌的根路徑 afile.puts base path e l...

第一次接觸ubuntu

第一次接觸ubuntu好激動 1.進入 退出命令列介面 alt ctrl f1 進入命令列介面 alt ctrl f7 退出命令列介面 2.安裝wine sudo apt get install wine使用 終端命令就是 wine 舉個例子,你現在要執行魔獸,然後你的魔獸的資料夾的位置是 home...