嵌入式資料庫(十三)

2021-07-25 22:33:31 字數 888 閱讀 8872

一、用insert語句記錄

最簡單的insert 語句 

[示範案例1] 

在「northwind」資料庫的「order details」表裡插入一條記錄,其中「orderid」欄位的值為10248;「productid」欄位的值為1;「unitprice」欄位的值為10;「quantity」欄位的值為2;「discount」欄位的值為0.8 。

程式清單如下:

insert [order details] (orderid,productid,unitprice,quantity,discount)

values(10248,1,10,2,0.8)

標識列、允許為空字段的處理

[示範案例3] 

在「northwind」資料庫的「categories」表裡插入一條記錄,其中「categoryname」欄位的值為「圖書」;「description」欄位的值為「所有型別的圖書」 。

程式清單如下:

insert into categories(categoryname,description)

values('圖書','所有型別的圖書')

有預設值欄位的處理

[示範案例4] 

在「學生」資料庫中建立「教師」表(性別為有預設值列) 。在該表中錄入資料。 

程式清單如下:

insert into teachers(teach_id,teach_name,t***,tdegree)

values('rj001', '李波',default, '本科')

insert into student values (95020, '陳冬', '男','is', 18);

insert into sc (sno, cno,grade) values(95020, 1,100);

嵌入式資料庫

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