我在2个不同的数据库中有2个表:
database1.table1
看起来像:
id | word1
1 test1
2 test2
3 test3
和database2.table2
看起来像:
price | word2
10 test1
15 test2
30 test3
如何比较word1
和word2
以查看word2
中的密钥是否在word1
中的mysql join或php中找到
任何想法? 感谢
答案 0 :(得分:6)
SELECT t1.id, t1.word1, t2.price
FROM database1.table1 t1
JOIN database2.table2 t2
ON t1.word1 = t2.word2;