csm_emailids_finduseremailid.prc
来自「community server 源码」· PRC 代码 · 共 26 行
PRC
26 行
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[csm_EmailIDs_FindUserEmailID]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [csm_EmailIDs_FindUserEmailID]
GO
CREATE PROCEDURE dbo.csm_EmailIDs_FindUserEmailID
@EmailID bigint
AS
select E.UserID, E.SectionID, S.SettingsID
from csm_EmailIDs E
left join cs_Sections S on (S.SectionID = E.SectionID)
where EmailID = @EmailID
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
grant execute on [csm_EmailIDs_FindUserEmailID] to public
go
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?