我有两个包含商家名称和地址的表格。一些商业名称和地址以不同的格式书写。
Table 1 Table 3
ID Name Address ID Name Address
1 The three brothers 12 main st 1 three brothers main street
2 central the great 12-13 x str 2 main purpose milli street
3 main purpose shop 4 milli street 3 the great central 12 x-13 x str
我需要匹配两个表中存在的公司,如:
tbl1ID tbl2ID
1 1
2 3
3 2
知道我该怎么办?
答案 0 :(得分:-1)
试试这个
它可以显示两个表中具有相同名称的名称
Select *from table1,table2 where table1.name = table2.name;