Task2 2 用T SQL語句建立資料表

2021-10-03 22:19:11 字數 461 閱讀 2268

例:使用t-sql語句操作建立使用者資訊表,表名為users。

1.建立users資料表的t-sql語句**如下所示:

use studentdb

gocreate table users

(id int not null,

loginpwd char(10),

nickname varchar(50) not null,

*** char(5) not null,

star varchar(10) not null,

bloodtypeld char(8) not null

)

2.將上述t-sql語句**,在sql server 2014 執行後,顯示完成,表建立成功:

T SQL語句建立觸發器

create trigger 觸發器名 on 表或檢視 for after instead of 操作時機 insert,update,delete assql語句 例1 要求 在order test表建立insert觸發器,當向order test表插入一行,如果cust test表中對應 記錄s...

用普通T SQL語句代替游標操作

經常寫sql的同學們都知道,在sql server的ide中如果sql巢狀的層次太多,檢視和修改 將變得非常痛苦,再加上游標用得不恰當很容易出現 鎖 和 效能 問題.所以通常大大們都勸大家盡量少用游標,阿飛個人很喜歡將業務邏輯寫在儲存過程裡,於是也經常遇到需要游標邏輯的地方,這裡就跟大家分享一點使用...

使用T SQL語句建立資料庫

if exists select from sysdatabases where name ssh drop database ssh 建立資料 create database 09網路1 on primary 檔案所在的檔案組 name 09網路1 data 資料庫主檔案的名稱 filename ...