Hi,
I have 2 MySQL table with similar fields.
for example:
table1 (What's your hair color):
1
2
3
table2 (Wha'ts your wife hair color):
1
2
3
table3 (Hair color table):
1 -> Red
2 -> Blond
3 -> Black
see! i can't get all fields because man and his wife under define colors.
i want to get all fields by one query!
for example (it's worng example):
SELECT * FROM man AS m, wife AS w, m.hair_color, w,hair_color
WHERE user_id = 12
thank you