📄 newrpt.sql
字号:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[NewRpt]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[NewRpt]
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS OFF
GO
CREATE procedure NewRpt
@RptID int,
@GroupID int,
@RptName nvarchar(512),
@RptDesc nvarchar(1024),
@RptCallName nvarchar(512),
@RptWidth int,
@RptHeight int,
@RightID int,
@UserID int,
@Date nvarchar(10),
@Time nvarchar(8)
as
insert Js_Rpt(Js_RptID,Js_GroupID,Js_RptName,Js_RptDesc,Js_RptCallName,Js_RptWidth,Js_RptHeight,Js_RightID,Js_UserID,Js_Date,Js_Time)
values(@RptID,@GroupID,@RptName,@RptDesc,@RptCallName,@RptWidth,@RptHeight,@RightID,@UserID,@Date,@Time)
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -