Oracle PL/SQL Tutorial/Introduction/dual — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:05, 26 мая 2010
Do simple calculation by using dual
SQL>
SQL> select 123 * 456 from dual;
123*456
----------
56088
SQL>
SQL> select sysdate from dual;
SYSDATE
----------
26-10-2009
SQL>
The dual Table
- dual is a table that contains a single row.
- The dual table has one VARCHAR2 column named dummy.
- dual contains a single row with the value X.
The structure of the dual table:
SQL>
SQL> DESCRIBE dual;
Name Null? Type
DUMMY VARCHAR2(1)