1 つの SQL クエリに結合して 1 つのテーブルに表示する 2 つの SQL クエリがあります。
SELECT subname,subscribers as sub1 FROM reports_subreport where country ='1' and mp='0' and date ='2013-10-15' and NOT(subname LIKE '%Test%') order by site,subname
SELECT subscribers as sub2 FROM reports_subreport where country ='1' and mp='0' and date ='2013-10-08' and NOT(subname LIKE '%Test%') order by site,subname
表に次のようなものを表示する必要があります。
サブネーム サブ 1サブ 2
ENT 222 202
私はmysqlとphpが初めてなので、ここで私を助けてもらえますか?