<pre>
					select
						a.article_id,
						a.headline,
						a.summary,
						c.column_name
					from
						articles as a
					left join
						columns as c
							on
								a.column_id = c.column_id
					where  ORDER BY article_id DESC limit 20 [nativecode=1064 ** You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY article_id DESC limit 20' at line 12]