Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7163029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:49:57+00:00 2026-05-28T13:49:57+00:00

IF @insertedValue IS NOT NULL AND @insertedValue > 0 This logic is in a

  • 0
IF @insertedValue IS NOT NULL AND @insertedValue >  0 

This logic is in a trigger.

The value comes from a deleted or inserted row (doesn’t matter).

2 questions :

  1. Do I need to check both conditions? (I want all value > 0, value in db can be nullable)

  2. Does SQL Server check the expression in the order I wrote it ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T13:49:58+00:00Added an answer on May 28, 2026 at 1:49 pm

    1) Actually, no, since if the @insertedValue is NULL, the expression @insertedValue > 0 will evaulate to false. (Actually, as Martin Smith points out in his comment, it will evaluate to a special value “unknown”, which when forced to a Boolean result on its own collapses to false – examples: unknown AND true = unknown which is forced to false, unknown OR true = true.) But you’re relying on comparison behaviour with NULL values. A single step equivalent method, BTW, would be:

    IF ISNULL(@insertedValue, 0) > 0
    

    IMHO, you’re better sticking with the explicit NULL check for clarity if nothing else.

    2) Since the query will be optimised before execution, there is absolutely no guarantee of order of execution or short circuiting of the AND operator.

    Combining the two – if the double check is truly unnecessary, then it will probably be optimised out before execution anyway, but your SQL code will be more maintainable in my view if you make this explicit.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This thread is the continuation of the below thread Trigger Windows Service when the
I wanna check inserted value in excel cell and if value is higher than
What is the best way to get last inserted value of a field with
I have, @post = Post.all I need the last inserted value in the array
I have a SELECT query like this: SELECT id_default_value, id_type FROM ntg_attribute, ntg_module_attribute WHERE
The Vector find function can search an inserted value even if you try and
In my PDO implementation, I am attempting to use an inserted value in the
I created a table Place in mysql. In this table there are three fields.
In the strategy pattern is it ok to only do some of the logic
I'm converting a ColdFusion Project from Oracle 11 to MS SQL 2008. I used

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.