for example two columns of table1 , have relation to the id column of table2 for example: tbl_city: (id , title) tbl_person: (id , name , CurrentCityID , LastCityID , ...) now , I want to make two relations from tbl_person to tbl_city CurrentCityID and LastCityID must relation to tbl_city this query is wrong: SELECT tbl_person.name , tbl_city.title , tbl_city.title FROM tbl_person JOIN tbl_city ON tbl_person.CurrentCityID = tbl_city.id JOIN tbl_city ON tbl_person.LastCityID = tbl_city.id can you help me ?
H.R