Try:

SELECT C.CustomerId, C.CustomerName, C.StatusId, I.AuthorityId
FROM Customer C
LEFT JOIN Identifier I ON I.CustomerId = C.CustomerId and I.AuthorityId = 11
WHERE C.StatusId = 1
ORDER BY C.CustomerName
Answer from user359040 on Stack Overflow
🌐
W3Schools
w3schools.com › sql › sql_null_values.asp
SQL NULL Values - IS NULL and IS NOT NULL
SELECT CustomerName, ContactName, Address FROM Customers WHERE Address IS NULL; Try it Yourself » · Tip: Always use IS NULL to look for NULL values. The IS NOT NULL operator is used to test for non-empty values (NOT NULL values).
🌐
w3resource
w3resource.com › sql › insert-statement › insert-null.php
Sql inserting NULL values - w3resource
To add values'A001','Jodi','London','.12','NULL' for a single row into the table 'agents' then, the following SQL statement can be used:
🌐
Database Journal
databasejournal.com › home › features
Working with NULL Values in SQL | DatabaseJournal.com
March 9, 2023 - For instance, if we want to select every employee from the employees table who have a phone number, you could use the following SQL query: SELECT * FROM employees WHERE phone_number IS NOT NULL; In this SQL example, we selected all values from ...
🌐
Scaler
scaler.com › topics › sql › null-value-in-sql
NULL Value in SQL - Scaler Topics
April 20, 2022 - These functions are ISNULL() and IFNULL(). When we are inserting the data in the tables, it is possible that data for some fields are not available. Instead of adding garbage values to these fields, NULL is inserted in the fields.
🌐
GeeksforGeeks
geeksforgeeks.org › sql › how-to-set-a-column-value-to-null-in-sql
How to Set a Column Value to Null in SQL? - GeeksforGeeks
In this article 'How to Set a Column Value to Null in SQL', we have reached to some of the basic conclusions, that are listed below. Use the table name in the UPDATE statement. Put NULL in the column name. To select which rows to update, use ...
Published   July 23, 2025
🌐
GeeksforGeeks
geeksforgeeks.org › sql › how-to-insert-rows-with-null-values-in-sql
How to Insert Rows with NULL Values in SQL? - GeeksforGeeks
July 23, 2025 - Query: SELECT * FROM WORKER; Output: Thus, in this way, we can insert NULL values into a table. Create Quiz · Comment · A · abhisri459 · Follow · 1 · Improve · A · abhisri459 · Follow · 1 · Improve · Article Tags : SQL · SQL-Server ...
🌐
Tutorialspoint
tutorialspoint.com › sql › sql-null-values.htm
SQL - NULL Values
SELECT ID, NAME, AGE, ADDRESS, SALARY FROM CUSTOMERS WHERE SALARY IS NULL; The above query would produce the following result − · You can update the NULL values present in a table using the UPDATE statement in SQL.
Find elsewhere
🌐
TutorialsPoint
tutorialspoint.com › insert-null-value-into-int-column-in-mysql
Insert NULL value into INT column in MySQL?
You can insert NULL value into an int column with a condition i.e. the column must not have NOT NULL constraints. The syntax is as follows. INSERT INTO yourTableName(yourColumnName) values(NULL); To under
🌐
Quora
quora.com › How-do-you-add-null-values-in-SQL
How to add null values in SQL - Quora
Answer (1 of 3): NULL values are handled differently depending on whether they are in the context of a tuple or a set. In the case of a tuple: (e.g. 1 + NULL), the result is always NULL. This is because if any part of a tuple is missing or unknown then the entire tuple cannot be known and hence m...
🌐
SQL Shack
sqlshack.com › working-with-sql-null-values
Working with SQL NULL values
May 19, 2021 - This article will show functions and operators for handling SQL NULL values.
🌐
SQL Authority
blog.sqlauthority.com › home › sql server – adding values containing nulls
SQL SERVER - Adding Values Containing NULLs - SQL Authority with Pinal Dave
October 19, 2020 - Now let us add the data of the column and we are going to use the simple operator of PLUS (+) as well as function ISNULL which actually will check if the column value is NULL then will convert it to zero.
🌐
Microsoft Learn
learn.microsoft.com › en-us › sql › t-sql › language-elements › null-and-unknown-transact-sql
NULL and UNKNOWN (Transact-SQL) - SQL Server | Microsoft Learn
When null values are present in data, logical and comparison operators can potentially return a third result of UNKNOWN instead of just TRUE or FALSE. This need for three-valued logic is a source of many application errors. Logical operators in a boolean expression that includes UNKNOWN return UNKNOWN, unless the result of the operator doesn't depend on the UNKNOWN expression.
🌐
W3Schools
w3schools.com › sql › sql_isnull.asp
SQL IFNULL(), ISNULL(), COALESCE(), and NVL() Functions
SQL Examples SQL Editor SQL Quiz SQL Exercises SQL Server SQL Syllabus SQL Study Plan SQL Bootcamp SQL Certificate SQL Training ... Suppose that the "UnitsOnOrder" column is optional, and may contain NULL values. ... In the example above, if any of the "UnitsOnOrder" values are NULL, the result will be NULL. ... The MS Access IsNull() function returns TRUE (-1) if the expression is a null value, otherwise FALSE (0): SELECT ProductName, UnitPrice * (UnitsInStock + IIF(IsNull(UnitsOnOrder), 0, UnitsOnOrder)) FROM Products;