📄 altersectiontableaddfailoverskincolumn.sql
字号:
ALTER TABLE dbo.Community_Sections
ADD section_failOverPageSkin NVARCHAR(100) NULL
go
update dbo.Community_Sections
set section_failOverPageSkin = ''
go
update dbo.Community_Sections
set section_failOverPageSkin = section_pageSkin
where section_parentID = -1
go
ALTER TABLE dbo.Community_SampleSections
ADD section_failOverPageSkin NVARCHAR(100) NULL
go
update dbo.Community_SampleSections
set section_failOverPageSkin = ''
go
update dbo.Community_SampleSections
set section_failOverPageSkin = section_pageSkin
where section_parentID = -1
go
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -