Re: Re: Re: task 4

From Emerald Owl, 8 Months ago, written in Plain Text, viewed 292 times. This paste is a reply to Re: Re: task 4 from Blush Motmot - view diff
URL http://codebin.org/view/aa55127c Embed
Download Paste or View Raw
  1. SELECT ar.name,
  2.        COUNT(al.album_id) AS alb_count
  3. FROM artist AS ar
  4. LEFT OUTER JOIN album AS al ON al.artist_id = ar.artist_id
  5. GROUP BY ar.name
  6. HAVING alb_count = 0

Replies to Re: Re: Re: task 4 rss

Title Name Language When
Re: Re: Re: Re: task 4 Abrupt Leech text 8 Months ago.

Reply to "Re: Re: Re: task 4"

Here you can reply to the paste above