Hello, i've got two tabels, "Artists" and "Music". The relevant columns are:
Artists:
[Id],[Name]
Music:
[Id],[ArtistId], [Title],[Added]
I want select the post's in the music table, but instead of returning the artist id, it should return [Name] from the Artist table where Music.ArtistId = Artists.Id (so it looks in the Artists table and selects the right name for the id)
it should be simple, but i cant make it work. (im not good with subqueryies). And i have only come up with solutions that doesnt select the right posts