Write a stored procedure that uses the table name and field name as parameters and has returned values

Source: Internet
Author: User

Set ansi_nulls on
Set quoted_identifier on
Go

-- ===================================================== ======
-- Author: <author, Name>
-- Create Date: <create date,>
-- Description: <description,>
-- ===================================================== ======
Alter procedure [DBO]. [sp_ifexistinfo]
-- Add the parameters for the stored procedure here
 
@ Websitelistid int,
@ Tablename varchar (50 ),
@ Fieldname varchar (50 ),
@ Inputinfo varchar (100)

As
Begin
-- Set nocount on added to prevent extra result sets from
-- Interfering with select statements.
-- Set nocount on;
Declare @ sqlstmt nvarchar (4000)
Declare @ returnid varchar (50)
-- Insert statements for procedure here
Set @ sqlstmt = 'select @ returnid = count (1) from ['+ @ tablename +'] Where '+ @ fieldname +' = ''' + @ inputinfo + ''' and websitelistid = '+ Cast (@ websitelistid as varchar)
Exec sp_executesql @ sqlstmt, n' @ returnid int output', @ returnid output

If @ returnid> 0
Return '1'
Else
Return '0'
End

 


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.