mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-18 01:06:40 +08:00
10 lines
219 B
Transact-SQL
10 lines
219 B
Transact-SQL
ALTER TABLE gen_table ADD data_name nvarchar(200) DEFAULT '' NULL
|
|
GO
|
|
|
|
EXEC sp_addextendedproperty
|
|
'MS_Description', N'数据源名称',
|
|
'SCHEMA', N'dbo',
|
|
'TABLE', N'gen_table',
|
|
'COLUMN', N'data_name'
|
|
GO
|