I recently learned how to use the UNION ALL command. However, I don't know how to use it with a join.
Can someone show me how to modify the query below so that it performs a left join on TWO tables - gw_articles_usa and gw_articles_canada?
$stm = $pdo->prepare("SELECT WT.N, WT.URL, WT.Title,
USA.URL, USA.Brief, USA.Article, USA.Pagedex, USA.Links
FROM gw_topics WT
LEFT JOIN gw_articles_usa USA ON USA.URL = WT.URL
WHERE WT.URL = :MyURL");
$stm->execute(array(
'MyURL'=>$MyURL
));