SQL語名建立 修改 刪除資料庫 表 字段 登入

2022-05-02 23:51:08 字數 1172 閱讀 5369

建立資料庫

create

database

nimeux_test 

on( 

name 

=nimeux_test,

filename ='

d:\nimeux_test.mdf',

size =4

,maxsize =10

,filegrowth =1

)刪除資料庫

drop

database

nimeux_test

建立資料表

1use

nimeux_test 

create

table

[dbo].

[users]2

(3[id

][int]

primary

keyidentity(1

, 1) ,4

[username][

varchar](

50),5[

password][

varchar](

50),6[

rank][

int]

default(1

),7[addtime][

datetime

]default

(getdate

()),8)

刪除資料表

drop

table

users

新增乙個字段

alter

table

users 

addnewfield 

varchar(30

) not

null

刪除乙個字段

alter

table

users 

drop

oldfield

修改資料表指定欄位為文字型別

1alter

table表名2

alter

column

欄位名 字段型別

新增乙個登入名

exec

sp_addlogin 

'登入名',

'密碼',

'資料庫

'刪除乙個登入名

exec

sp_droplogin 

'登入名'

修改,刪除資料庫表

修改表名 舊的表名tehels 新的表名teacher alter table tehels rename as teacher add 欄位名 列屬性 增加表的字段 alter table 表名 alter table teacher add id int 10 修改表的字段 重新命名,修改約束 ...

資料庫修改,刪除資料 總結

修改資料和新增資料沒有什麼大的區別 修改就是重新新增 步驟 一 首先修改資料二 定義三個變數 結果集字串 字串 dim txtsql as string dim msgtext as string dim mrcc as adodb.recordset 三 判斷資料有效性四 刪除要修改的資料 記得一...

資料庫修改,刪除資料 總結

修改資料和新增資料沒有什麼大的區別 修改就是重新新增 步驟 一 首先修改資料二 定義三個變數 結果集字串 字串 dim txtsql as string dim msgtext as string dim mrcc as adodb.recordset 三 判斷資料有效性四 刪除要修改的資料 記得一...