Dec 12, 2002 #1 Leon1977 IS-IT--Management Jun 27, 2001 79 BG I need to write a Create table SQL script for MS ACCESS but I need a autonumber field and a double (fixed 2) How should I define theese datatypes Create table table_name( id int primary key /autonumber/, price float /fixed(2)/ ) something like this
I need to write a Create table SQL script for MS ACCESS but I need a autonumber field and a double (fixed 2) How should I define theese datatypes Create table table_name( id int primary key /autonumber/, price float /fixed(2)/ ) something like this
Dec 12, 2002 #2 TorF Programmer Sep 30, 2002 83 FR This should works, but it miss the double fixed2: DoCmd.RunSQL "CREATE TABLE MyTable (id COUNTER PRIMARY KEY, price FLOAT)" Upvote 0 Downvote
This should works, but it miss the double fixed2: DoCmd.RunSQL "CREATE TABLE MyTable (id COUNTER PRIMARY KEY, price FLOAT)"
Dec 13, 2002 Thread starter #3 Leon1977 IS-IT--Management Jun 27, 2001 79 BG OK Thanx a lot counter works but I still need the double (fixed 2) !!! Upvote 0 Downvote