I have a dropdown list on the data entry form in Apex 5.0 which was single select field earlier and now user wants it make multiselect list.
I had the field "FieldA_ID" as number in the main table to store data from the form and was using lookup table for the fieldA_ID and field_description and primary key for the lookup table was foreign key for the main table.
The issue is that if I make the field as multiselect, the values are being stored as string, so I need to change the data type to varchar2 instead of number.
So the lookup table will have 2 varchar fields, one for the ID and other for the description.
Can I make varchar2 field type as primary key for the lookup table as well?
Thanks,
Blyzz