Hello everyone,
My problem is that I want to create a table with a field of data type decimal with a scale. As you know decimal data type isn't supported in ms access jet engine. Here is an example.
create table test (
field1 integer primary key not null,
field2 varchar(20),
field3 decimal (10,2))
Can I use another data type instead of decimal and assign it a scale??
Thanks..
Have in mind that I don't want to use design view of table or vba. Just sql.
My problem is that I want to create a table with a field of data type decimal with a scale. As you know decimal data type isn't supported in ms access jet engine. Here is an example.
create table test (
field1 integer primary key not null,
field2 varchar(20),
field3 decimal (10,2))
Can I use another data type instead of decimal and assign it a scale??
Thanks..
Have in mind that I don't want to use design view of table or vba. Just sql.