TriTran
July 10th, 1999, 08:12 AM
How can I add a table to an existing Access database. Require a field type of AutoNumber and a DELETE CASCADE relationship to another table. I already try to execute SQL.
|
Click to See Complete Forum and Search --> : Adding a new table TriTran July 10th, 1999, 08:12 AM How can I add a table to an existing Access database. Require a field type of AutoNumber and a DELETE CASCADE relationship to another table. I already try to execute SQL. Cih July 12th, 1999, 02:17 AM Use data type COUNTER to create autonumber column. ( CREATE TABLE TAB_Account (f_ID COUNTER CONSTRAINT c_primary PRIMARY KEY, ... ) ). Check MS Access Help for available types and CREATE TABLE syntax. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |