一、用insert語句記錄
有預設值欄位的處理
[示範案例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);
二、修改資料
修改資料
update 《表名》
set 《列名》=《表示式》 set 列名 表示式 [where 《條件》]
將學生95001的年齡改為22歲
update student set sage = 22 where sno=95001
„ 將所有學生的年齡增加1歲
update student set sage=sage+1
嵌入式資料庫
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在內的公司在其桌面軟體中亦使...