🌐
W3Schools
w3schools.com › sql › sql_null_values.asp
SQL NULL Values - IS NULL and IS NOT NULL
The IS NULL operator is used to test for empty values (NULL values). The following SQL lists all customers with a NULL value in the "Address" field:
🌐
W3Schools
w3schools.com › sql › sql_aggregate_functions.asp
SQL Aggregate Functions
String Functions: ASCII CHAR_LENGTH ... CASE CAST COALESCE CONNECTION_ID CONV CONVERT CURRENT_USER DATABASE IF IFNULL ISNULL LAST_INSERT_ID NULLIF SESSION_USER SYSTEM_USER USER VERSION SQL Server Functions...
🌐
GeeksforGeeks
geeksforgeeks.org › sql › isnull-function-in-sql-server
SQL Server ISNULL() Function - GeeksforGeeks
July 23, 2025 - Explanation: In the query SELECT ISNULL('gfg', 'Geeks');, since the first argument 'gfg' is not NULL, the function returns 'gfg' without using the replacement value 'Geeks'. Write a query to replace a NULL value with a specified string in SQL Server.
🌐
SQL Skull
sqlskull.com › home › sql is null
SQL IS NULL - SQL BI Tutorials
January 13, 2021 - SQL Server Tutorials By Pradeep Raturi : The IS NULL is used in SQL to find a NULL value. It returns TRUE if a NULL value is found, otherwise it returns FALSE.
🌐
Quora
quora.com › What-is-the-difference-between-“is-null”-and-“-null”-in-SQL
What is the difference between “is null” and “= null” in SQL? - Quora
IS NULL returns true when the operand is NULL. = NULL always yields UNKNOWN (treated like false in WHERE) for any non-NULL operand and also yields UNKNOWN if both sides are NULL. In three-valued logic (TRUE / FALSE / UNKNOWN), comparisons with ...
🌐
SQLTeam
forums.sqlteam.com › t › is-null-vs-null › 21223
IS NULL vs =NULL - SQLTeam.com Forums
June 15, 2022 - How can the below return different things · NULL is an unknown value and therefore a NULL value can never be equal to another value, even if that other value is NULL. NULL = NULL is unknown and cannot be true - eliminating that row from the ...
🌐
W3Schools
w3schools.com › sql › sql_isnull.asp
W3Schools.com
The "InOrder" column is optional, and may contain NULL values. ... Note: In the SQL above, if any of the "InOrder" values are NULL, the result will be NULL!
Find elsewhere
🌐
Dolphindb
docs.dolphindb.com › en › Programming › SQLStatements › isnull.html
is null
is null operator is used to test for null values, which is equivalent to the function isNull . is not null operator is used to test for non-empty values (NOT null values). The SQL keywords is null/is ...
🌐
W3Schools
w3schools.com › sql › trysql.asp
SQL Tryit Editor v1.6
This SQL-Statement is not supported in the WebSQL Database.
🌐
The Tech Platform
thetechplatform.com › post › isnull-sql-function-handling-null-values-in-microsoft-sql-server
ISNULL SQL Function: Handling NULL Values in Microsoft SQL Server
October 20, 2023 - It is commonly used in Microsoft SQL Server, and its syntax is as follows: ... 'expression': This is the value or column you want to check for NULL. If expression is NULL, the ISNULL function will return default_value.
🌐
Django
docs.djangoproject.com › en › 6.0 › ref › models › fields
Model field reference | Django documentation | Django
When an object referenced by a ForeignKey is deleted, Django will emulate the behavior of the SQL constraint specified by the on_delete argument. For example, if you have a nullable ForeignKey and you want it to be set null when the referenced object is deleted:
🌐
W3Schools
w3schools.sinsixx.com › sql › sql_null_values.asp.htm
SQL NULL Values - IS NULL and IS NOT NULL
Well organized easy to understand SQL tutorial with lots of examples. Including PHP, ASP, ADO, Oracle, Access, SQL Server. Related: HTML, JavaScript, XML, XQuery
🌐
W3Schools
w3schools.com › sql › func_sqlserver_isnull.asp
SQL Server ISNULL() Function
SQL Examples SQL Editor SQL Quiz SQL Exercises SQL Server SQL Syllabus SQL Study Plan SQL Bootcamp SQL Certificate SQL Training ... The ISNULL() function returns a specified value if the expression is NULL.
🌐
Reintech
reintech.io › blog › understanding-sql-is-null-and-is-not-null-operators
SQL 'IS NULL' & 'IS NOT NULL' Operators | Reintech media
September 30, 2023 - Before diving into the operators, let's clarify what NULL actually means in SQL. NULL isn't zero, it isn't an empty string, and it isn't a space character. NULL represents the absence of a value—unknown or missing data.
🌐
W3Schools
w3schools.com › sql › sql_ref_is_null.asp
SQL IS NULL
SQL Examples SQL Editor SQL Quiz SQL Exercises SQL Server SQL Syllabus SQL Study Plan SQL Bootcamp SQL Certificate SQL Training ... The IS NULL command is used to test for empty values (NULL values).
🌐
Microsoft Learn
learn.microsoft.com › en-us › sql › t-sql › queries › is-null-transact-sql
IS NULL (Transact-SQL) - SQL Server | Microsoft Learn
To determine whether an expression is NULL, use IS NULL or IS NOT NULL instead of comparison operators (such as = or !=). Comparison operators return UNKNOWN when either or both arguments are NULL.
🌐
PostgreSQL Tutorial
pgtutorial.com › home
PostgreSQL Tutorial
April 2, 2025 - IS NULL – Check if a value is NULL or not.