I get syntax error in field definition running this in an Access Query (sql) and highlights decimal.
ALTER TABLE VENDORS
ADD last_column decimal(6,2);
I've tried various forms of it and if I use "int" instead of "decimal(6,2)", then it works ok. One of the books I'm reading leads me to believe decimal is a valid. I tried "numeric(6,2)" also, that gives a syntax error too.
I also see them listed here too under datatypes..
ALTER TABLE VENDORS
ADD last_column decimal(6,2);
I've tried various forms of it and if I use "int" instead of "decimal(6,2)", then it works ok. One of the books I'm reading leads me to believe decimal is a valid. I tried "numeric(6,2)" also, that gives a syntax error too.
I also see them listed here too under datatypes..