proc_pltcald_upd.sql

来自「工厂采购系统,DELPHI+SQL SERVER,三层技术」· SQL 代码 · 共 27 行

SQL
27
字号
if object_id('dbo.Proc_PltCald_Upd') is not null
drop procedure Proc_PltCald_Upd
go

Create procedure Proc_PltCald_Upd
@FYear	int = null,
@FMonth int = null,
@FDay   int = null,
@Holiday_Flag bit = null,
@Holiday_Type char(2) = null,
@Remark varchar(120) = null
as
begin
	if  exists(select Fdate from Plant_Calendar where FYear = @Fyear
	and Fmonth = @Fmonth  and Fday = @Fday) 
	begin
		update Plant_Calendar
			set Holiday_flag =@Holiday_flag,
			    Holiday_type = @Holiday_Type,
			    Remark = @Remark
	where FYear = @Fyear
	and Fmonth = @Fmonth  and Fday = @Fday
	end
end
			
			
		

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?