i don't understand your question
are you asking how to do it in Access?
in Access you have to name the primary key constraint
create table Toys
( id integer not null constraint pkToys primary key
, parent integer null
, constraint validparent foreign key (parent) references Toys (id)
, name varchar(50) not null
)
this syntax works in Access 97
for more information, see
Common DDL SQL for the Microsoft Access Database Engine