Default query for all implementations when query parameters are empty (null) in SQL Server

Source: Internet
Author: User
Method 1:
When the publisher filter condition is NULL, how do you write SQL?

1 DECLARE @publishers VARCHAR (50);
2 SELECT * FROM dbo. Book WHERE Publishers=isnull (@publishers, publishers)

Method 2:

DECLARE @cinv varchar (50)
SELECT * from inventory where 1=1 and ([email protected] or @cinv is null)

Method 3:
DECLARE @name VARCHAR (+), @page INT =1
SET @name = ' Zhang San '

DECLARE @sql VARCHAR (1000)
SET @sql = ' select * from myTable where 1=1 '
IF @name is not NULL
SET @[email protected]+ ' and name= ' [email protected]+ '--character type note the number of quotes
IF @page is not NULL
SET @[email protected]+ ' and page= ' +ltrim (@page)--int type Note convert to character type
--print @sql
EXEC (@sql)

Default query for all implementations when query parameters are empty (null) in SQL Server

Related Article

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.