回覆列表
-
1 # 被囚禁的王者
-
2 # 速速影片
use 資料庫名(是要刪除表的所在的那個資料庫的名稱)GOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type="U")>0beginSELECT @sql="drop table " + nameFROM sysobjectsWHERE (type = "U")ORDER BY "drop table " + nameexec(@sql) end-----------------------------------------------use 資料庫一定要填對哦......
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--注意:刪除表的所有行,但表的結構、列、約束、索引等不會被刪除;不能用語有外建約束引用的表