Skip to content

Instantly share code, notes, and snippets.

@braidn
Created November 20, 2013 19:32
Show Gist options
  • Save braidn/7569505 to your computer and use it in GitHub Desktop.
Save braidn/7569505 to your computer and use it in GitHub Desktop.
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