Column format: default value for null value : Null Value Concatanation « Select Query « Oracle PL / SQL

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » Select Query » Null Value Concatanation 
Column format: default value for null value
 
SQL> create table registrations
  2  attendee    NUMBER(4)
  3  , course      VARCHAR2(6)
  4  , begindate   DATE
  5  , evaluation  NUMBER(1)
  6  , constraint  R_PK        primary key(attendee,course,begindate)
  7  ;

Table created.

SQL>
SQL> insert into registrations values (2,'SQL',date '2009-04-12',4   );

row created.

SQL> insert into registrations values (14,'SQL',date '2009-04-12',5   );

row created.

SQL> insert into registrations values (6,'SQL',date '2009-04-12',4   );

row created.

SQL> insert into registrations values (11,'SQL',date '2009-04-12',2   );

row created.

SQL> insert into registrations values (8,'SQL',date '2009-10-04',NULL);

row created.

SQL> insert into registrations values (9,'SQL',date '2009-10-04',3   );

row created.

SQL> insert into registrations values (13,'SQL',date '2009-10-04',4   );

row created.

SQL> insert into registrations values (13,'SQL',date '2009-12-13',NULL);

row created.

SQL> insert into registrations values (6,'SQL',date '2009-12-13',NULL);

row created.

SQL> insert into registrations values (3,'OAU',date '2009-08-10',4   );

row created.

SQL> insert into registrations values (12,'OAU',date '2009-08-10',4   );

row created.

SQL> insert into registrations values (13,'OAU',date '2009-08-10',5   );

row created.

SQL>
SQL> column evaluation NULL "unknown!!!"
SQL>
SQL> select from registrations
  2  where  attendee = 4;

no rows selected

SQL>
SQL>
SQL> drop table registrations;

Table dropped.

   
  
Related examples in the same category
1.Oracle converts the null into a blank text string
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.