I want to use Access SQL to create a table. It works fine *EXCEPT* I can't seem to create a decimal number type!
I'm trying to do this:
CREATE TABLE [TEST] ([ID] Long NOT NULL, [MyTextField] Text (2), [MyDecimalField] Decimal(10,6))
Everything works except the Decimal declaration. I've tried changing the word 'Decimal' to 'Double', 'Numeric', etc. but no dice. I need that field to have a Precision of 10 and a Scale of 6. Can someone please tell me the proper syntax? I've searched and searched but can't find exactly what I'm looking for.
Thanks!
I'm trying to do this:
CREATE TABLE [TEST] ([ID] Long NOT NULL, [MyTextField] Text (2), [MyDecimalField] Decimal(10,6))
Everything works except the Decimal declaration. I've tried changing the word 'Decimal' to 'Double', 'Numeric', etc. but no dice. I need that field to have a Precision of 10 and a Scale of 6. Can someone please tell me the proper syntax? I've searched and searched but can't find exactly what I'm looking for.
Thanks!