一个检测用户名是否存在
SQL code

ALTER procedure [dbo].[GetISExistsByName]
@StaffName nvarchar(50),
@out int output
as
set @out=1
if not exists (select * from LiveChainCSWeb.dbo.LC_Staff where Usertype_ID=3 and StaffName=@StaffName)
begin

set @out=0

end


相关文章:

  • 2022-02-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2022-12-23
猜你喜欢
  • 2021-05-26
  • 2021-07-13
  • 2022-02-17
  • 2021-07-06
相关资源
相似解决方案