I have a db with 11 tables.
The tables A contains 15 fields, 10 of theirs contain an id from another table or the 0 value.
Each of these tables has two fields, id and description.
I would to query the db to obtain the table A with the right description at the place of the id or null if the id is 0.
What do I have to use? join, left or inner join? how?
use this statement to select description & use left join of rest of the tables with tablea:
Example:
and so on….