php,mysql,如何比较两个字符串?

时间:2011-08-19 18:32:58

标签: php mysql

我在2个不同的数据库中有2个表: database1.table1看起来像:

id | word1
1    test1
2    test2
3    test3

database2.table2看起来像:

price | word2
10      test1
15      test2
30      test3

如何比较word1word2以查看word2中的密钥是否在word1中的mysql join或php中找到

任何想法? 感谢

1 个答案:

答案 0 :(得分:6)

SELECT t1.id, t1.word1, t2.price
  FROM database1.table1 t1 
  JOIN database2.table2 t2 
    ON t1.word1 = t2.word2;