Create Table Statement

  • Thread starter Thread starter nagesh
  • Start date Start date
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)
 
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.
 
Back
Top