有一个用于创建数据库的条目:
create table stack.Accounts
(
row_id int GENERATED ALWAYS AS IDENTITY ,
parent_id int, -- row_id родительской записи
number int, -- Номер лицевого счета
type int, -- Тип записи (1 - Дом, 2- Квартира, 3 - Лицевой счет)
constraint PK_Accounts
primary key (row_id),
constraint FK_Accounts_Folder
foreign key (parent_id)
references stack.Accounts(row_id)
on delete no action
on update no action
);
但我不明白“堆叠”是什么意思
我没有找到任何帮助信息。
1条答案
按热度按时间i7uq4tfw1#
堆栈是一个所谓的模式,使用
create table stack.Accounts
可以在模式堆栈中创建一个表。更多关于schma的信息可以在这里找到,例如psql docs schema