Difference between revisions of "HR.EMP DETAILS VIEW (view)"

From dbscript Online Help
Jump to: navigation, search
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''view | HR.EMP_DETAILS_VIEW |- |} <pre> </pre>)
 
Line 7: Line 7:
 
|-
 
|-
 
|}
 
|}
 +
  
 
<pre>
 
<pre>
 
+
CREATE OR REPLACE SELECT
 +
  e.employee_id,
 +
  e.job_id,
 +
  e.manager_id,
 +
  e.department_id,
 +
  d.location_id,
 +
  l.country_id,
 +
  e.first_name,
 +
  e.last_name,
 +
  e.salary,
 +
  e.commission_pct,
 +
  d.department_name,
 +
  j.job_title,
 +
  l.city,
 +
  l.state_province,
 +
  c.country_name,
 +
  r.region_name
 +
FROM
 +
  employees e,
 +
  departments d,
 +
  jobs j,
 +
  locations l,
 +
  countries c,
 +
  regions r
 +
WHERE e.department_id = d.department_id
 +
  AND d.location_id = l.location_id
 +
  AND l.country_id = c.country_id
 +
  AND c.region_id = r.region_id
 +
  AND j.job_id = e.job_id
 +
WITH READ ONLY
 
</pre>
 
</pre>

Revision as of 21:02, 24 August 2009

wikibot

view HR.EMP_DETAILS_VIEW


CREATE OR REPLACE SELECT
  e.employee_id,
  e.job_id,
  e.manager_id,
  e.department_id,
  d.location_id,
  l.country_id,
  e.first_name,
  e.last_name,
  e.salary,
  e.commission_pct,
  d.department_name,
  j.job_title,
  l.city,
  l.state_province,
  c.country_name,
  r.region_name
FROM
  employees e,
  departments d,
  jobs j,
  locations l,
  countries c,
  regions r
WHERE e.department_id = d.department_id
  AND d.location_id = l.location_id
  AND l.country_id = c.country_id
  AND c.region_id = r.region_id
  AND j.job_id = e.job_id
WITH READ ONLY