Hi,
I'm using this sql syntax to append data into a new table (+ some additional columns 'test1' and 'test2'):
I would have expected that in field 'test1', the format of the data is CURRENCY.
What I see in reality, is that the field 'test1' is formatted as SHORT TEXT and shows $25.00 when I open the table.
What do I have to do/change so the datatype is CURRENCY instead of SHORT TEXT?
I'm using this sql syntax to append data into a new table (+ some additional columns 'test1' and 'test2'):
Code:
strsqlb = "SELECT *, format('25','currency') as test1, 0 as test2 INTO table2 FROM (select * from table1);"
What I see in reality, is that the field 'test1' is formatted as SHORT TEXT and shows $25.00 when I open the table.
What do I have to do/change so the datatype is CURRENCY instead of SHORT TEXT?