Created
November 20, 2013 19:32
-
-
Save braidn/7569505 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select a.account_id, c.fed_id, e.fname, e.lname | |
from account a inner join customer c | |
on a.cust_id = c.cust_id | |
inner join employee e | |
on a.open_emp_id = e.emp_id | |
where c.cust_type_cd = 'B'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment