Create Table Statement

N

nagesh

Hi all

i am getting Problem with default word in Create Table
statement

Create Table test2
(Id autoincrement,
name text(255) ,
age int not null default value 20)
 
A

Allen Browne

Drop the word "value".

Normally in Access DDL, we use COUNTER for autoincrement, and INTEGER for
int. You may also find that some of these options in DDL statements work
only if you execute the query statement under ADO.
 
Top