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:
๐ŸŒ
Scaler
scaler.com โ€บ home โ€บ topics โ€บ sql โ€บ null value in sql
NULL Value in SQL - Scaler Topics
March 28, 2024 - 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.
๐ŸŒ
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 ...
๐ŸŒ
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. Comment ยท Article Tags: Article Tags: SQL ยท SQL-Server ยท SQL-Query ยท Basics ยท Structured Query Language (SQL)5 min read ยท SQL Data Types4 min ...
Find elsewhere
๐ŸŒ
Tutorialspoint
tutorialspoint.com โ€บ home โ€บ sql โ€บ sql null values
Understanding SQL NULL Values
November 29, 2009 - 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.
๐ŸŒ
Quora
quora.com โ€บ What-is-the-command-to-insert-null-values-in-SQL-fields
What is the command to insert null values in SQL fields? - Quora
Answer (1 of 11): SQL INSERT statement is used to insert new records into table. NULL keyword represents undefined value of a column belonging to database table. According to description as mentioned into above question SQL insert statement should not be executed to insert null values into tabl...
๐ŸŒ
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...
๐ŸŒ
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
๐ŸŒ
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.
๐ŸŒ
LearnSQL.com
learnsql.com โ€บ cookbook โ€บ how-to-select-null-values-in-sql
How to Select NULL Values in SQL | LearnSQL.com
To select rows with NULL in a given column, use a special operator IS NULL: SELECT EmployeeID, EmployeeName, Salary FROM Employees WHERE Salary IS NULL; ... NULL in SQL is used to indicate a missing or unknown value.
๐ŸŒ
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.