Re: Untitled

From Buff Iguana, 2 Months ago, written in Python, viewed 58 times. This paste is a reply to Untitled from Sharp Tamarin - view diff
URL http://codebin.org/view/282323c6 Embed
Download Paste or View Raw
  1. SELECT          t.name,
  2.                 SUM(i.quantity)
  3. FROM            track AS t
  4. JOIN            invoice_line AS i
  5. ON              t.track_id = i.track_id
  6. GROUP BY        t.track_id
  7. LIMIT           20

Reply to "Re: Untitled"

Here you can reply to the paste above