Hello. I have a table with several column, all formatted as INT values. I'd like to know if there is a possibility to use in this table, CONSTANT STRING values instead of numeric value. Each CONSTANT STRING value is defined (like C language "#define" syntax) in another table. For example:
table1:
- CONSTANT1 = 2
- CONSTANT2 = 23
- CONSTANT3 = 12
- CONSTANT4 = 7
table2
- PARAMETER1 = CONSTANT1
- PARAMETER2 = CONSTANT2
- PARAMETER3 = CONSTANT3
- PARAMETER4 = CONSTANT4
Is there any way to do this? Many thanks