An SQL statement that retrieves a commodity based on the product name and price range

Source: Internet
Author: User

If the name and price are empty, all the data is retrieved

1  1 Select *  fromtblproduct2  2 where(@proName="' orChvproname like '%'+@proName+'%')3  3  and(@minPrice="'  orMnyproprice>=@minPrice)4  4  and(@maxPrice="' orMnyproprice<=@maxPrice);5  5 6  6--Replace the arguments with strings below7  7 --Test8  8 Select *  fromtblproduct9  9 where("'="' orChvproname like '%'+"'+'%')Ten Ten  and("'="'  orMnyproprice>=null) One  One  and("'="' orMnyproprice<=null);
--Retrieve all the goods

Note: ' Is null ' returns false

--If you change to the following code: "Error converting from data type varchar to numeric" is reported. "The WrongSelect *  fromtblproductwhere(' '=' ' orChvproname like '%'+"'+'%') and(' '  is NULL  orMnyproprice>= ") and(' '  is NULL orMnyproprice<= ");

If you change mnyproprice>= ' to Mnyproprice>=null, you will not get an error, but you cannot retrieve any data because the condition is not met.

An SQL statement that retrieves a commodity based on the product name and price range

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.