SQL stored procedures Execute SQL dynamically

Source: Internet
Author: User


--according to the input person to get hours statistics information
ALTER PROC Proc_getworkhourbyempid
@key1 varchar (100),--keywords
@user_group1 varchar,--user groups
As
Begin
declare @SqlSelect nvarchar (+), @ParmDefinition nvarchar (max);
Set @SqlSelect = ' select * ' from User where 1=1 '--sql statement
Set @ParmDefinition =n ' @key nvarchar (ten), @user_group nvarchar (50) '; --Parameter declaration
If (@key1 is not null and @key1! = ")
Begin
Set @[email protected]+ ' and (Emp_name like @key or emp_number like @key or branch_name like @key) '
End

If (@user_group1 is not null and @user_group1! = ")
Begin
Set @[email protected]+ ' and user_grouping like @user_group '
End

--Execute SQL

EXEC sp_executesql @SqlSelect, @ParmDefinition, @[email protected],
@[email Protected]_group1
End

SQL stored procedures Execute SQL dynamically

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.