Modify Database Insert Default date

Source: Internet
Author: User

Nullif () function Use explanation

2014-06-23 23:16 by Zwwhnly, 2992 Reading, collection, compilation

The Nullif () function accepts two parameters. Returns a null value if they are equal, otherwise returns the first argument.

Equivalent to the following expression:

Case if Expression1=expression2 then Nullelse expression1end

The Nullif () function is typically used to prevent the addition of 0 errors.

If variable b is 0, the following expression generates an error, but you can use the Nullif () function so that if the value of variable B is 0, it returns null instead of an error

Select A/bselect A/nullif (b,0)

sql2005 if the type of the field definition is datetime, insert as"'(empty), then the default value is 1900- on- on xx:xx:00.000the solution query is filtered by the cast (Nullif("',"') as datetime) [SQL] ViewPlain CopySelect cast("'  as datetime)      , cast(Nullif("',"') as datetime)      , IsNull(cast(Nullif("',"') as datetime),getdate())  /*---------------------------------------------------------------------1900-01-01 00:00:00.000 NULL 2009-02-25 17:18:15.140 (1 rows affected)*/  

Modify Database Insert Default date

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.