Select r.Region_Name
, c.Country_Name
, l.State_Province
, d.Department_Name
, e.Last_Name
, e.Job_Id
From Regions R
Join Countries C On r.Region_Id = c.Region_Id
Full Outer Join Locations L On c.Country_Id = l.Country_Id
Full Outer Join Departments D On l.Location_Id = d.Location_Id
Full Outer Join Employees E On d.Department_Id = e.Department_Id
Where r.Region_Name = 'Americas'
And c.Country_Name <> 'United States of America';
Select r.Region_Name
, c.Country_Name
, l.State_Province
, d.Department_Name
, e.Last_Name
, e.Job_Id
From Regions R
Join Countries C using ( Region_Id )
Full Outer Join Locations L using ( Country_Id )
Full Outer Join Departments D using ( Location_Id )
Full Outer Join Employees E using ( Department_Id )
Where r.Region_Name = 'Americas'
And c.Country_Name <> 'United States of America';
How to get URL of commentator
-
We sometimes get questions about how to get the web address/URL of a
commentator in our blog. Blogger.com has not provided any way to do that.
However, the...
7 years ago
No comments:
Post a Comment