Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
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, 5514👍, 0💬
Popular Posts:
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters? Unicode requires 1...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...
What is effort variance? Effort Variance = (Actual effort – Estimated Effort) / Estimated Effort.
Why is there extra white space before or after tables? This is often caused by invalid HTML syntax. ...