Microsoft Learn
learn.microsoft.com › en-us › sql › t-sql › functions › isnull-transact-sql
ISNULL (Transact-SQL) - SQL Server | Microsoft Learn
ISNULL replaces NULL with the specified replacement value.
Videos
09:05
Como usar as funções IFNULL, ISNULL e NVL - Curso de SQL - Aula ...
17:54
Trabalhando com valores NULL no SQL Server! - YouTube
13:04
COMO LIDAR COM NULL E COMO USAR ISNULL , NULLIF E COALESCE ENTENDA ...
13:27
IfNULL/IsNULL/Coalesce Functions in SQL - YouTube
07:01
SQL | Null Function in SQL | ISNULL | COALESCE | IFNULL | NVL - ...
05:11
SQL NULL Functions Explained: COALESCE vs IFNULL for Beginners ...
W3Schools
w3schools.com › Sql › sql_isnull.asp
SQL COALESCE(), IFNULL(), ISNULL(), NVL() Functions
The COALESCE() function works in MySQL, SQL Server, and Oracle (not in MS Access). ... The MySQL IFNULL() function replaces NULL with a specified value.
1Keydata
1keydata.com › sql › sql-ifnull.html
SQL IFNULL Function | Replace NULL Values in SQL Queries
Discover how to use SQL IFNULL to replace NULL values with a specified value. Explore syntax and examples for handling NULL in your SQL queries.
Microsoft Learn
learn.microsoft.com › en-us › sql › t-sql › language-elements › nullif-transact-sql
NULLIF (Transact-SQL) - SQL Server | Microsoft Learn
November 22, 2024 - Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance Azure Synapse Analytics Analytics Platform System (PDW) SQL analytics endpoint in Microsoft Fabric Warehouse in Microsoft Fabric SQL database in Microsoft Fabric
Database Guide
database.guide › sql-ifnull-explained
SQL IFNULL() Explained
+-----------------------+ | IFNULL( null, 1 / 0 ) | +-----------------------+ | NULL | +-----------------------+ 1 row in set, 1 warning (0.00 sec) This time we get the warning. That’s because the first argument is null, and so it progressed to the second argument (which also resolves to null). SQL Server doesn’t have an IFNULL() function, but it does have the ISNULL() function that does the same thing that IFNULL() does in the RDBMSs mentioned above.
W3Schools
w3schools.com › sql › func_sqlserver_isnull.asp
SQL Server ISNULL() Function
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...
Actian Communities
communities.actian.com › s › article › How-do-you-use-the-IFNULL-function-in-SQL
How to Use the IFNULL in SQL
SELECT col1, IFNULL(col2, 0), LEFT(col4, 22) FROM t1: For more detail please download SQL Reference Guide.
Snowflake Documentation
docs.snowflake.com › en › sql-reference › functions › ifnull
IFNULL | Snowflake Documentation
Snowflake performs implicit conversion of arguments to make them compatible. For example, if one of the input expressions is a numeric type, the return type is also a numeric type. That is, SELECT IFNULL('17', 1); first converts the VARCHAR value '17' to the NUMBER value 17, and then returns ...
DataFlair
data-flair.training › blogs › sql-null-functions
SQL Null Functions - ISNULL, IFNULL, Combine, & NULLIF - DataFlair
March 11, 2021 - Using this recognizing capacity, one can further perform operations on the null values like the aggregate functions in SQL. Some of the functions are as follows: Let us now have a look at our demo database – ‘DataFlair’ Query: ... Example: Let us view the experience of each employee in DataFlair and replace the NULL value with 0 years of experience. Query: SELECT emp_id,name, IFNULL(experience, 0) FROM DataFlair;
Progress
docs.progress.com › bundle › datadirect-openaccess › page › topics › sqlref › ifnull-isnull-nvl.html
IFNULL, ISNULL, NVL
May 11, 2026 - These functions allow NULL value to be replaced by a default value. OpenAccess SDK supports IFNULL as defined by ODBC, ISNULL as defined by Microsoft SQL Server, and NVL as defined by Oracle.
Study.com
study.com › computer science courses › introduction to sql
SQL: IFNULL Function | Study.com
The IFNULL function takes two arguments. It checks to see if the first argument is not NULL. If it is not NULL, it returns the first argument. Otherwise, it returns the second argument.
Tutorialspoint
tutorialspoint.com › sql › sql-null-functions.htm
SQL - Null Functions
The IFNULL() function replaces the NULL values in a database table with a specific value. This function accepts two arguments. If the first argument is a NULL value, it is replaced with the second argument.
SQL Practice
sql-practice.com › learn › query › ifnull
SQL IFNULL(), ISNULL(), COALESCE(), and NVL() Functions
SELECT first_name, IFNULL(alle... COALESCE(allergies,'none') as allergies · FROM patients · SQL Server · The SQL Server ISNULL() function lets you return an alternative value when an expression is NULL: SELECT first_name, IFNULL(allergies,'none') as allergies ·...