嵌入式資料庫(九)

2021-07-25 20:26:19 字數 440 閱讀 1112

一、字元匹配

查詢所有不姓「劉」的學生 

select sname 

from student 

where sname not like 『劉%』

查詢以a,b,c開始的產品名稱

select  productname

from products 

where productname like '[a-c]%' 

二、涉及空值的查詢 

空值是未確定的值或其值尚不知道

例如,學生選課,在開學初學生只有選課記錄,沒有修課成績,這時成績一項的值就是空值。

不能用=或<>,只能用is null或is not null

例:查詢無成績的學生的學號和相應的課程號 

、】select sno, cno from sc 

where grade is null 

嵌入式資料庫

include include include include int print void para,int columncount,char columnvalue,char columnname 由使用者處理查詢的結果 printf n return0 int main char name 2...

嵌入式資料庫sqlite

自虛擬神話 也許往往大家是不需要像mysql sqlserver這類在複雜的資料庫,那麼sqlite 值得你去嘗試下!什麼是 sqlite sqlite 是一款輕量級的 基於檔案的嵌入式資料庫,2000年就已經誕生,經過多年的發展,直到今天已經成為最流行的,包括google在內的公司在其桌面軟體中亦...

嵌入式資料庫sqlite

自虛擬神話 也許往往大家是不需要像mysql sqlserver這類在複雜的資料庫,那麼sqlite值得你去嘗試下!什麼是 sqlite sqlite 是一款輕量級的 基於檔案的嵌入式資料庫,2000年就已經誕生,經過多年的發展,直到今天已經成為最流行的,包括google在內的公司在其桌面軟體中亦使...