sqlserver建立和刪除約束

來源:互聯網
上載者:User
使用sql語句建立和刪除約束

主建約束:(primary key constraint);唯一約束:(unique constraint);檢查約束:(check constraint);預設約束:(default constraint);外建約束:(foreign key constraint);**********************************************************************添加約束:alter table tablenameadd constraint pk_colname primary key(colname)主建約束alter table tablenameadd constraint uq_colname unique (colname)唯一約束alter table tablenameadd constraint df_colname default('地址不詳')for colname 預設約束alter table tablenameadd constraint ck_colname check(colname between 12 and 15)檢查約束alter table tablenameadd constraint fk_colname foreign key(colname)references tablename(colname)外建約束刪除約束:alter table tablenamedrop constraint 約束名 建立登陸帳戶/資料庫使用者  建立登入帳戶:exec sp_grantlogin 'windows 網域名稱/域帳戶'建立資料庫使用者:exec sp_grantdbaccess '登陸帳戶','資料庫使用者'向資料庫授權:grant 許可權[on 表名]to 資料庫使用者以上語句可直接在企業管理器中操作企業管理器/安全性/登陸/建立登陸
填寫名稱和密碼
選擇資料庫訪問,再底下"資料庫角色中允許" db_owner也打上勾
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.