Dummy table in Oracle
586717Jul 6 2007 — edited Jul 6 2007We have a dummy table in oracle named dual which has a single row and a single column. We can use this dual table to retrieve output of any single row functions.
But the size of that single column is just 1 char. when we execute
select sysdate from dual;
how it retrieves system date which is more than one char?