Обсуждение: What is the difference of these two kinds of foreign key defination?

Поиск
Список
Период
Сортировка

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

От
sheepjxx
Дата:
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),
);