Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Using parenthesis in the from clause query

Eslam_ElbyalyApr 3 2014 — edited Apr 4 2014

hi all ,

why to use parenthesis at the beginning and at the end of the "from clause query" like that :

(SELECT e.First_name

      ,e.last_name

      ,e.phone_number

      ,e.hire_date

      ,d.department_name

      ,m.last_name||', '||m.first_name as manager_name

FROM employees e, departments d, employees m

WHERE e.department_id = d.department_id

AND e.manager_id = m.employee_id)

craig say so , but did not say why .

thanks

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 2 2014
Added on Apr 3 2014
3 comments
167 views