Guest User

Untitled

a guest
Mar 23rd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. select Customer.FirstName, Customer.LastName, Track.Name, Invoice.InvoiceId
  2. from Track
  3. join InvoiceLine on InvoiceLine.TrackId = Track.TrackId
  4. join Invoice on InvoiceLine.InvoiceId = Invoice.InvoiceId
  5. join Customer on Invoice.CustomerId = Customer.CustomerId
  6. order by Invoice.InvoiceId
Add Comment
Please, Sign In to add comment