how I want to view data. I tried that code but it not work. There are 2 database which are db1 and db2. table db1 are data_borang_mohon, and the key is no_kp_ejen table db2 are mohon, and the key is nokp_agen.I want to view all data that have same value no_kp_ejen=nokp_agen. example value is 123
db1 table name: data_borang_mohon
+------------------+--------------+
| no_kp_ejen | Number |
+------------------+--------------+
| 123 | 555-0071 |
| batmanbegins | 555-0392 |
+------------------+--------------+
table name: mohon
+------------------+--------------+
| nokp_agen | PhoneNumber |
+------------------+--------------+
| 123 | 555-0074 |
| batmanbegins | 555-0392 |
+------------------+--------------+
the view should be
+------------------+--------------+
| no_kp_ejen | PhoneNumber |
+------------------+--------------+
| 123 | 555-0074 |
| 123 | 555-0071 |
+------------------+--------------+