Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Are NULL Values
What Are NULL Values? - MySQL FAQs - Introduction to SQL Basics
✍: FYIcenter.com
NULL is a special value that represents no value. Here are basic rules about NULL values:
The tutorial exercise shows you some interesting examples:
SELECT 0 IS NULL FROM DUAL; 0 SELECT 0 IS NOT NULL FROM DUAL; 1 SELECT '' IS NULL FROM DUAL; 0 SELECT '' IS NOT NULL FROM DUAL; 1 SELECT NULL IS NULL FROM DUAL; 1 SELECT NULL IS NOT NULL FROM DUAL; 0
2007-05-11, 5462👍, 0💬
Popular Posts:
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepa...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...
How To Add Column Headers to a Table? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells I...
How To Assign Query Results to Variables? - Oracle DBA FAQ - Working with Database Objects in PL/SQL...