SadAko Posted July 19, 2021 Report Share Posted July 19, 2021 Hi! I'm just curious what is the difference between IsNull without a space and Is Null with the space? Thanks! Quote Link to comment Share on other sites More sharing options...
0 autonumber Posted July 19, 2021 Report Share Posted July 19, 2021 Hi there! IsNull is when there is value to return. It Replaces NULL with the specified replacement value, otherwise returns the result of expression.. While Is Null with the space is when you just want to check if there is a blank value. You can check this link https://howto.caspio.com/function-reference/ SadAko 1 Quote Link to comment Share on other sites More sharing options...
0 telly Posted July 20, 2021 Report Share Posted July 20, 2021 Hi @SadAko, The difference between IsNull and Is NULL, We use IS NULL to identify NULL values in a table. ISNULL() function lets you return an alternative value when an expression is NULL. For reference you can check these links: - https://www.w3schools.com/sql/sql_isnull.asp - https://www.sqlshack.com/sql-isnull-function-2/ Quote Link to comment Share on other sites More sharing options...
0 NiceDuck Posted July 21, 2021 Report Share Posted July 21, 2021 In regards with 'IS NULL', you can actually try using ( = '' ) as well. ex. Where [@field:name] IS NULL Where [@field:name] = '' Quote Link to comment Share on other sites More sharing options...
0 RuisiHansamu Posted April 5 Report Share Posted April 5 There is a similar forum post that can be very helpful here: Quote Link to comment Share on other sites More sharing options...
Question
SadAko
Hi! I'm just curious what is the difference between IsNull without a space and Is Null with the space? Thanks!
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.