その場合は、ALTER TABLEにて変更すること。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE [table name] ALTER COLUMN [column name] [new definition]; | |
ALTER TABLE [dbo].[USERMASTER] ALTER COLUMN [FIRSTNAME] varchar(30) NOT NULL; | |
-- NOT NULL をつけないとNULLで上書きされる。 |
0 件のコメント:
コメントを投稿