Tagged articles

IS NULL

7 articles · Page 1 of 1
ITPUB
ITPUB
Aug 14, 2026 · Databases

Still Using NULL? How It Can Quietly Slow Down Your Database

This article explains why MySQL discourages using NULL as a default column value, demonstrates how NULL affects indexing, comparisons, and aggregate functions, and shows through concrete examples that improper NULL handling can lead to unexpected query results and performance degradation.

IFNULLIS NULLIndex
0 likes · 13 min read
Still Using NULL? How It Can Quietly Slow Down Your Database
php Courses
php Courses
Apr 22, 2025 · Backend Development

Using PHP’s is_null Function to Check for Null Variables

This article explains how the PHP is_null function can be used to determine whether a variable holds a null value, demonstrates its behavior with example code, and discusses the practical implications for conditional logic in backend development.

IS NULLnull checkphp-functions
0 likes · 4 min read
Using PHP’s is_null Function to Check for Null Variables
php Courses
php Courses
Feb 21, 2024 · Backend Development

Using PHP’s is_null Function to Check for Null Variables

This article explains how the PHP built‑in function is_null can be used to determine whether a variable holds a null value, demonstrates its behavior with example code, and describes the resulting true or false outcomes for different variable types.

IS NULLPHPnull check
0 likes · 4 min read
Using PHP’s is_null Function to Check for Null Variables
Laravel Tech Community
Laravel Tech Community
Jun 18, 2021 · Databases

Understanding NULL Values in Databases

This article explains the special nature of NULL in SQL, how to correctly test for NULL using IS NULL, the three‑valued logic of true/false/unknown, and the pitfalls of NOT, NOT IN, and Oracle’s handling of empty strings versus NULL.

DatabaseIS NULLNULL
0 likes · 6 min read
Understanding NULL Values in Databases