我有两个表:Table1 和 Table2。
表格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
它应该是 1,因为 Table1 上只有一条记录。有什么解决方案吗?