Go [SQL] How to implement dynamic join conditions in stored procedures---didn't think the statement could be so ingenious

Source: Internet
Author: User

During a stored procedure, if you want to implement a WHERE clause dynamic query for a select query, you can use the EXEC ("Select .... where" [email protected]) method. But in this case, the feeling of using stored procedures is useless, because the most important feature of the stored procedure is to compile the code in the DBMS, and call the Exec, this part can not be compiled, it is impossible to optimize. The following is a clever way to implement the so-called "Dynamic Query" SELECT * FROM table1 where a = 1 and ((@id is NULL) or ([email protected]) or (@id = ")) @id Is the parameter passed in, if the value of the ID is null, then an entire block after and is false, can be ignored, and if not NULL, it is actually equal to where a=1 and Id=[email protected] if you want to enable the ID as a query condition, A non-null value is passed in, otherwise the ID is not enabled as a query condition, which is the legendary dynamic query

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.