Thread: What is the difference of these two kinds of foreign key defination?

What is the difference of these two kinds of foreign key defination?

From
sheepjxx
Date:
To be precise,
 
The difference between

create table a (
     foreign key (id) referenced by b(name),
);

create table b(
      id  integer referenced by b(name),
);