嵌入式資料庫(七)

2021-07-25 19:10:28 字數 516 閱讀 7727

一、查詢條件

查詢年齡不在20~23之間的學生姓名、所在系和年齡

elect sname, sdept, sage  from student 

where sage not between 20 and 23

等價於:

select sname, sdept, sage  from student 

where sage <20 or sage>23

確定集合 (in)

作用:用來查詢屬性值屬於指定集合的元組 

查詢資訊系(is)、數學系(ma)和計算機系(cs)學生的姓名和性別。

select sname, s***  from student 

where sdept in(『is』,『cs』, 『ma』)

等價於:

select sname, s***  from student 

where  sdept=『is』 or 

sdept=『ma』 or

sdept=『cs』 

嵌入式資料庫

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在內的公司在其桌面軟體中亦使...