标签:style 使用 时间 oracle table size
dual是个虚表,其只有一列。
当查询时间或者日期这些对象的时候就需要使用这个表。
例如: select sysdate from dual;
因为在oracle当中,查询语句必须要有关键字 select ....from tablename; 只有样语句才完整的。要是没有表名就无法查询。而时间日期等不存于任何表中,这时候时候就引入了dual 虚表概念。
select user from dual;--返回当前连接用户
标签:style 使用 时间 oracle table size
原文地址:http://blog.csdn.net/helloboat/article/details/36015485