I have a mysql table (album) that looks like this:
counter
type_id
name
I want to order the table like this:
SELECT * FROM album ORDER BY type_id
The problem is that type_id is a integer. I do not want to order by the integer. I want to order by type from another table. I have another table that is called type that have two fields like this:
type_id
type
1
Prince
2
Elton John
3
George Michael
Can someone please point me in the right direction.