A primary table holds info about things with int id’s.
Translations for these id’s are in second table. Id of second table refers to primary table id’s, and holds textual description of these. I need a hint how to write a sql select clause to get all the fields from primary table so that all its id values are shown as translation texts?
Assuming Table1 have id1, id2, id3 and table2 the translations, I will do something like that (not tested):