Results 1 to 4 of 4

Thread: What is null value?

  1. #1
    Join Date
    Feb 2009
    Posts
    8

    What is null value?

    Hello friends!

    Can you guys tell me what is Null value.

    Regards,

  2. #2
    Join Date
    May 2008
    Posts
    44

    Re: What is null value?

    The nullability of a column determines if the rows in the table can contain a null value for that column. A null value, or NULL, is not the same as zero (0), blank, or a zero-length character string such as ""; NULL means that no entry has been made.

    A value of NULL indicates the value is unknown. A value of NULL is different from an empty or zero value. No two null values are equal. Comparisons between two null values, or between a NULL and any other value, return unknown because the value of each NULL is unknown.

    In general, avoid permitting null values because they incur more complexity in queries and updates and because there are other column options, such as PRIMARY KEY constraints, that cannot be used with nullable columns.

  3. #3
    Join Date
    Dec 2007
    Posts
    38

    Re: What is null value?

    null is a value that is unknown , unavailable or
    inapplicable. Null is not same as zero or blank space.

  4. #4
    Join Date
    May 2008
    Posts
    115

    Re: What is null value?

    Many argue that it should be allowed to have NULL values in a database. The reality is; all database systems I know of, allow NULL values for columns. But is it right; or even better; are NULL values at all allowed at all according to the relational model?

    I should make you aware of the fact that the term "NULL values" is actually incorrect: NULL means "unknown", and as such, it can not be considered a "value" at all.

    The relational model states that every attribute has a value for a given occurence (row/tuple). (Remember, NULL is not a value, it is something unknown). NULL means something is unknown. It does NOT mean null (the digit 0). Null (or zero, the digit) is a known value: You can include 0 in calculations, whilst NULL stands for "value is unknown". There is a world of difference between the two.

    Please refer this webpage for further details:
    http://www.databasedesign-resource.c...-database.html

Similar Threads

  1. Dereferencing NULL pointer in C++
    By TO-Phir in forum Software Development
    Replies: 4
    Last Post: 26-06-2011, 07:42 PM
  2. Does Null value refer to empty value in SQL?
    By Chellam in forum Software Development
    Replies: 3
    Last Post: 07-01-2011, 08:24 AM
  3. How to Check Null Value in C#?
    By sivaranjan in forum Software Development
    Replies: 4
    Last Post: 04-02-2010, 04:49 AM
  4. How To Create A Null Modem
    By Snake08 in forum Networking & Security
    Replies: 0
    Last Post: 12-01-2009, 09:59 AM
  5. Handling NULL in ASP.NET
    By Techie in forum Software Development
    Replies: 3
    Last Post: 21-09-2005, 06:16 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,302,527.90903 seconds with 17 queries