new project, new problem ;-)
I have 2 custom tables combined via CSVi PRO. Each of the two tables has an "id" field. Both fields are displayed in the template fields and are assigned to the respective tables. Both id fields have different column headers.
Here is the select from the log:
SELECT `available`,
`j25_configbox_options`.`id`,
`j25_configbox_options`.`sku`,
`j25_configbox_options`.`option_custom_1`,
`j25_configbox_options`.`option_custom_2`,
`j25_configbox_options`.`option_custom_3`,
`j25_configbox_options`.`option_custom_4`,
`j25_configbox_options`.`price`,
`j25_configbox_strings`.`id`,
`j25_configbox_strings`.`type`,
`j25_configbox_strings`.`key`,
`j25_configbox_strings`.`lang_id`,
`j25_configbox_strings`.`text`,
`j25_configbox_strings`.`language_tag`
FROM `j25_configbox_options`
INNER JOIN `j25_configbox_strings` ON `j25_configbox_strings`.`key` = `j25_configbox_options`.`id`
The export works so well.
Problem:
The export will only print the first ID. This value is written to both Export ID fields. The ID of the second table does not appear anywhere in the export.
Can you please check this once?
I looked everywhere ..... but can not find a mistake with me. I see no way to label the ID fields in the SQL statement with "AS".
Regards
Steffen