Table1 と Table2 の 2 つのテーブルがあります。
表1:
log_id | postcode
1 | LS11LS
表 2:
region | postcode
Leeds | LS1
Leeds | LS11
次のクエリを使用すると、
SELECT table2.region 'Region',
Count(table1.postcode) AS 'count'
FROM table1
INNER JOIN table2
ON table1.postcode LIKE Concat(table2.postcode, '%')
私は得る
Region | count
Leeds | 2
Table1 にはレコードが 1 つしかないため、1 にする必要があります。これに対する解決策はありますか?