Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Type DECIMAL

Status
Not open for further replies.

rmuller2

Programmer
Apr 11, 2002
6
NL
this is not accepted by Access:

CREATE TABLE test (
DecimalField DECIMAL(7,3);
)

What's wrong? In the documentation you can find that the DECIMAL type is supported and that the precision and scale
are variable??

Thanks for helping!

Ronald
 
The decimal data type is transitory in that you cannot actually use it as a data type in a table definition. You can move a number to a variant data type and then use decimal to perform calculations but to store the result try a "number" data type. The "number" data type will probably work for your needs anyway.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top