altersectiontableaddfailoverskincolumn.sql
来自「非常不错的学校在线考试分析系统」· SQL 代码 · 共 20 行
SQL
20 行
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 + =
减小字号Ctrl + -
显示快捷键?