I would like to combine 2 tables:
table1: [EMPLOYEES_BUSINESS]
EMPLOYEE_ID ; EMPLOYEE_FIRSTNAME ; EMPLOYEE_MIDDLENAME ; EMPLOYEE_LASTNAME ; EMPLOYEE_INITIALS
table2: [EMPLOYEES_GROUPS]
EMPLOYEE_ID ; GROUP_ID
In valuelists.ini of [EMPLOYEES_GROUPS] i tried:
[EMPLOYEES_BUSINESS]
__sql__ = "SELECT EMPLOYEE_ID, EMPLOYEE_LASTNAME, EMPLOYEE_MIDDLENAME, EMPLOYEE_FIRSTNAME FROM EMPLOYEES_BUSINESS ORDER BY EMPLOYEE_LASTNAME"
I see that only the first parameter (EMPLOYEE_LASTNAME) in the table displayed.
Is it possible to show more then 1 column (or 1 column with the data of more then 1 columns) ?