select
				a.article_id,
				a.headline,
				a.subheadline,
				a.url_slug,
				a.summary,
				c.column_name,
				date_format(i.start_date,'%Y/%m/%d') as slug_date,
				date_format(i.start_date,'%M %D, %Y') as pretty_date,
				au.author_name
			from
				articles as a
			left join
				issues as i
					on
						a.issue_id = i.issue_id
			left join
				authors as au
					on
						au.author_id = a.author_id
			left join
				columns as c
					on
						c.column_id = a.column_id
			where
				a.author_id = (
					select
						author_id
					from
						authors
					where
						author_name = 'Jeffrey C. Billman, Victor Gamez and Holly Otterbein'
				)
					and
				i.is_active = 1
			order by
				i.start_date desc
		 [nativecode=1242 ** Subquery returns more than 1 row]