[Original] Change SQL dynamic query to SQL query

Source: Internet
Author: User

/*
Author: A niu (NIU kunliang) QQ: 273352165 MSN: niukl@hotmail.com

Disclaimer: free of charge. Please keep this information
If you have any questions, please tell me!
*/
When we use stored procedures, we sometimes have to use dynamic queries to combine query conditions. For example, the following code:

Create   Proc Usp_search
@ City   Int
As
Begin
Declare   @ SQL   Varchar ( 8000 )
Set   @ SQL   = N ' Select * From testtable where 1 = 1 '
If ( @ City   <>   - 1 )
Set   @ SQL   =   @ SQL   +   ' And cityid = @ City '
Exec Sp_execute_ SQL @ SQL , N ' @ City int ' , @ City
End
Go

If you do not need dynamic SQL, you can change it to the following stored procedure:

Create   Proc Usp_search
@ City   Int
As
Begin
Select   *   From Testtable Where   1 = 1   And (@ City = -1   Or Cityid =   @ City )
End
Go

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.