中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SqlServer系列筆記——表的創建維護

發布時間:2020-07-20 09:48:08 來源:網絡 閱讀:297 作者:codejson 欄目:數據庫


--創建表

create table Employees

(

     EmployeeID Int primary key ,

     Name VarChar(10) NOT NULL,

     Sex Char(2) default '男',

     Birthdate Datetime NULL,

     Address Varchar(50) NULL,

     Phone Char(13) check (phone like '000-[0_9]'),

     Remark text

)

create table wage

(

     EmployeeID Int foreign key references Employees(EmployeeID),

     Name VarChar(10) NOT NULL,

     Wage money NOT NULL,

     Putdate Datetime NOT NULL,

)

--添加主鍵約束

alter table Employees

add constraint Employees_PK  primary key  (EmployeeID)

--添加外鍵約束

alter table wage 

add constraint wage_FK foreign key (EmployeeID) references Employees(EmployeeID)

--刪除約束

alter table wage

drop constraint wage_FK

--添加default約束

alter table Employees

add constraint a default ('unknown') for name,

constraint b default ('男') for sex,

 constraint   phone_check check(phone like '(\d{3})\d{9}')

--刪除列

alter table Employees

drop column Remark 

--添加列

alter table Employees

add Remark text,

phone varchar(10)

--刪除表的全部數據,表還在

delete from table_name

DELETE FROM Person WHERE age> 20

--刪除數據還原標識

truncate table table_name

--添加Insert


給可以給字段默認值,如果Guid類型主鍵的默認值設定為newid()就會自動生成主鍵:

     insert into Person3(Name,Age) values('lili',38);

  

   insert into Person(Id,Name,Age) values(newid(),'tom',30);

--更新Update

更新一個列:UPDATE T_Person Set Age=30


更新多個列:UPDATE T_Person Set Age=30,Name=‘tom’


更新一部分數據: UPDATE T_Person Set Age=30 where Name=‘tom’

------注意SQL中等于判斷用單個=,而不是==


--Where中還可以使用復雜的邏輯判斷UPDATE T_Person Set Age=30 where Name=‘tom’ or Age<25,

--or相當于C#中的||(或者)

update Person1 set NickName=N'二十歲' 

where (Age>20 and Age<30) or(Age=80)


--Where中可以使用的其他邏輯運算符:or、and、not、<、>、>=、<=、!=(或<>)等


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜兴市| 大石桥市| 葵青区| 岳阳市| 德保县| 阿克苏市| 平乐县| 米易县| 浦北县| 凌海市| 堆龙德庆县| 罗定市| 高碑店市| 万宁市| 宁陕县| 牡丹江市| 从化市| 洛浦县| 石柱| 石家庄市| 宁城县| 齐河县| 霞浦县| 岱山县| 登封市| 新巴尔虎左旗| 秦安县| 岐山县| 江孜县| 广安市| 驻马店市| 阳谷县| 油尖旺区| 若尔盖县| 威海市| 任丘市| 蓝田县| 诏安县| 太谷县| 云浮市| 镶黄旗|