Re: Re: Re: Re: task 4

From Abrupt Leech, 1 Year ago, written in Plain Text, viewed 310 times. This paste is a reply to Re: Re: Re: task 4 from Emerald Owl - view diff
URL http://codebin.org/view/4e66934a 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 COUNT(al.album_id) is Null

Replies to Re: Re: Re: Re: task 4 rss

Title Name Language When
Re: Re: Re: Re: Re: task 4 Edgy Goose text 1 Year ago.

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

Here you can reply to the paste above