㈠ 在sql中,對基本表中的記錄進行插入.修改.刪除的命令分別為
1、插入
--1.1【插入單行】
insert [into] <表名> (列名) values (列值)
--例:
insert into Strdents (姓名,性別,出生日期) values ('開心朋朋','男','1980/6/15')2、修改
update <表名> set <列名=更新值> [where <更新條件>]
--例:
update tongxunlu set 年齡=18 where 姓名='藍色小名'3、刪除
--3.1【刪除<滿足條件的>行】
delete from <表名> [where <刪除條件>]
--例:
delete from a where name='開心朋朋'(刪除表a中列值為開心朋朋的行)
3.2【刪除整個表】
truncate table <表名>
truncate table tongxunlu
--注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表