Oracle dual table and oracledual table

Source: Internet
Author: User

Oracle dual table and oracledual table

A Dual table is generated by default when each database is created. The table has only one column and one row.

1) analyze the dual table as follows:

 

2) application:

In the oracle database, the dual table exists as a virtual table, because the oracle query operation statement must meet the format: select columnname from tablename, where the from point must represent, therefore, some non-query operations can be implemented through dual tables, such:

-- View the current date:

Select sysdate from dual;

 

 

-- Calculation equations:

Select 3*3-3 as result, 8-9 as plus from dual;

 

 

-- Concatenate a string:

Select 'this' | 'is '| 'test' from dual;

 

 

-- Execute other operations without specific tables

 

 

 

 

 

---------

This series is a learning note for oracle recently. It is recorded here as a review of itself. Some of them come from the Internet, some come from books, but it has been a long time and cannot be remembered which are references, if it is reprinted but not marked, we apologize.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.