I have two different databases. The first, let's call it db_client, contains a table called played_songs. In played_songs, there is a column called song_name.
I have a second database called db_system, which has a table called songs. In the songs table, there is also a column called song_name.
How can I select and update rows in db_system's songs table which have the same song_name as the rows in db_client's played_songs? There is also another column in db_system's songs table which is called image, which I want to set NULL if the song_name from db_system's songs table is in db_client's played_songs table