I have table:
id name type
where "type" is 1 or 2
I need to join this table with two other. Rows with "type = 1" should be joined with first table, and =2 with second.
For example, main table contains some events that peoples did. Fist table to join is information about mans, and second is about women. Type is sex.
I need take last 10 events with all information about these peoples.
Something like
SELECT *
FROM tbl
INNER JOIN tbl_1 ON tbl.name = tbl_1.name HAVING tbl.type = 1
INNER JOIN tbl_2 ON tbl.name = tbl_2.name HAVING tbl.type = 2
But it does not working.
How it can be implemented?