Hi,
I've got two tables, e.g. table_1 and table_2. I want to Select the foreign key from table_2 with the id from table_1 but the value of the foreign key in table_2 is the id from table_1 with a prefix.
table_1.id = 1
table_2.fk_id = fk1
How do I add a value to the id so I can select the fk?
Thanks!
Peter