LoginSignup
0
0

More than 5 years have passed since last update.

SQLServer 主キーの追加

Last updated at Posted at 2017-10-23

↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
USE [DB1]
GO
ALTER TABLE [table1] ADD PRIMARY KEY ([col1], [col2])
GO
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑

※PRIMARY KEYを設定する列⇒NOT NULLが必要になる
・nullable → not null

alter table [table1] alter column [col1] [nvarchar(20)] not null;

・not null → nullable

alter table [table1] alter column [col1] [nvarchar(20)] null;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0