I would like to know how to check in two different databases for same content in column.
On example, I have database1 with this data:
+----------+------------+------------------+
| actor_id | actor_user | actor_name       |
+----------+------------+------------------+
|        1 |     234287 | User1            |
|        2 |      47689 | User2            |
|        3 |     235133 | User3            |
|        4 |      62861 | User4            |
|        5 |     190486 | User5            |
+----------+------------+------------------+
And database2 with this data:
+----------+------------+------------------+
| actor_id | actor_user | actor_name       |
+----------+------------+------------------+
|        1 |     234257 | User5            |
|        2 |      47619 | User6            |
|        3 |     235123 | User7            |
|        4 |      62811 | User8            |
|        5 |     190436 | User9            |
+----------+------------+------------------+
I need query which will show User5 as output.
 
    