- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
SQL Interview Question #9 | What is NULL in SQL?
SQL Interview Question #9
What is NULL in SQL?
NULL represents missing, unknown, or unavailable data.
❌ NULL is not 0
❌ NULL is not an empty string
✅ NULL means no value exists
Example:
An employee has not provided an email address yet.
Email = NULL
Filtering NULL Values:
To find NULL values:
SELECT * FROM Employees
WHERE Email IS NULL;
To find non-NULL values:
SELECT * FROM Employees
WHERE Email IS NOT NULL;
💡 Daily Use Case:
In real-world applications, fields like Email, Phone Number, Middle Name, or Address may contain NULL values when the information is not available.
💡 Interview Tip:
Never use = NULL
Always use IS NULL or IS NOT NULL
🔔 Subscribe for daily SQL interview questions and SQL Server interview preparation.
#sql #sqlserver #mssql #null #database #sqlinterview #interviewquestions #learnsql #dba #softwareengineer
Видео SQL Interview Question #9 | What is NULL in SQL? канала Krish for tech
What is NULL in SQL?
NULL represents missing, unknown, or unavailable data.
❌ NULL is not 0
❌ NULL is not an empty string
✅ NULL means no value exists
Example:
An employee has not provided an email address yet.
Email = NULL
Filtering NULL Values:
To find NULL values:
SELECT * FROM Employees
WHERE Email IS NULL;
To find non-NULL values:
SELECT * FROM Employees
WHERE Email IS NOT NULL;
💡 Daily Use Case:
In real-world applications, fields like Email, Phone Number, Middle Name, or Address may contain NULL values when the information is not available.
💡 Interview Tip:
Never use = NULL
Always use IS NULL or IS NOT NULL
🔔 Subscribe for daily SQL interview questions and SQL Server interview preparation.
#sql #sqlserver #mssql #null #database #sqlinterview #interviewquestions #learnsql #dba #softwareengineer
Видео SQL Interview Question #9 | What is NULL in SQL? канала Krish for tech
Комментарии отсутствуют
Информация о видео
3 июня 2026 г. 23:15:22
00:01:01
Другие видео канала





















