How do I create an Access 2000 table and fields using SQL?
My attempt for creating a new table called newTable with a primary key of table_id and two more fields called firstname and theNumber:
Please advise if this is okay?
My attempt for creating a new table called newTable with a primary key of table_id and two more fields called firstname and theNumber:
Code:
create table newTable
(table_id integer not null unique autonumber,
firstName text(12),
theNumber integer));
Please advise if this is okay?