I have two tables. One has album information, and the other is actual copies of those albums in the inventory. These have different prices based on various factors. Each row in the inventory table doesn't store the album information directly, just the id of the album in the "albums" table.
The query I want to write will get me the Artist name, Album Name, image, etc from the albums table as well as the highest and lowest prices found in the inventory table.
I know basic MySQL but I'm having a lot of trouble with this one. Can some expert please help me here? Thanks a lot!
Albums table:
- id (pk)
- title
- artist
- year
- genre
Inventory table:
- id(pk)
- albumId (corresponds to an id in albums table)
- price
- condition
- mono
The query I've attempted looks like this but is giving me an error:
SELECT albums.artist, albums.title, albums.imgurl, albums.id
FROM albums
UNION
SELECT max(inventory.price), min(inventory.price)
WHERE albums.id = inventory.albumId
LIMIT 30
SELECT * FROM `albums`