英文:
How to specify relation on PostgreSQL table also has enum property set to specific value?
问题
I am using kysely, a SQL generating tool for Node.js, to make the PostgreSQL queries. Right now I am working on the migrations for generating the base tables. I am not really a SQL expert, I have done mostly Ruby on Rails ORM stuff in the past.
Sorry if this question has been asked before, I tried doing a lot of searches, but my search terms were vague and hard to pinpoint ("how to add constraint that the second table property has a specific value, when doing an association", etc.).
What I would like to accomplish is, how to say that my relationship column should also validate that the associated record has a specific property. So I have this:
await db.schema
.createTable('key')
.addColumn('id', 'uuid', c => c.primaryKey())
.addColumn('name', 'varchar(32)', c => c.notNull())
.addColumn('category', 'varchar(32)', c => c.notNull())
.execute()
await db.schema
.createTable('event')
.addColumn('id', 'uuid', c =>
c.references('key.id').notNull(),
)
I am pretty sure that would be like this in raw SQL:
create table key {
id uuid primary key,
name varchar(32),
category varchar(32),
};
create table event (
id uuid primary key,
action_type_id references key(id)
);
What I would like to do is something like this (pseudocode):
create table key {
id uuid primary key,
name varchar(32),
category varchar(32),
};
create table event (
id uuid primary key,
action_type_id references key(id) where key(category) == 'category1'
);
How can I do something like that in plain PostgreSQL syntax? I can probably figure out how to apply it to the kysely library after that.
The key
table will have many category/name pairs (unique(category, name)
), where category is in some small set of values, and name is as well.
英文:
I am using kysely, a SQL generating tool for Node.js, to make the PostgreSQL queries. Right now I am working on the migrations for generating the base tables. I am not really a SQL expert, I have done mostly Ruby on Rails ORM stuff in the past.
Sorry if this question has been asked before, I tried doing a lot of searches, but my search terms were vague and hard to pinpoint ("how to add constraint that the second table property has a specific value, when doing an association", etc.).
What I would like to accomplish is, how to say that my relationship column should also validate that the associated record has a specific property. So I have this:
await db.schema
.createTable('key')
.addColumn('id', 'uuid', c => c.primaryKey())
.addColumn('name', 'varchar(32)', c => c.notNull())
.addColumn('category', 'varchar(32)', c => c.notNull())
.execute()
await db.schema
.createTable('event')
.addColumn('id', 'uuid', c => c.primaryKey())
.addColumn('action_type_id', 'uuid', c =>
c.references('key.id').notNull(),
)
I am pretty sure that would be like this in raw SQL:
create table key {
id uuid primary key,
name varchar(32),
category varchar(32),
};
create table event (
id uuid primary key,
action_type_id references key(id)
);
What I would like to do is something like this (pseudocode):
create table key {
id uuid primary key,
name varchar(32),
category varchar(32),
};
create table event (
id uuid primary key,
action_type_id references key(id) where key(category) == 'category1'
);
How can I do something like that in plain PostgreSQL syntax? I can probably figure out how to apply it to the kysely library after that.
The key
table will have many category/name pairs (unique(category, name)
), where category is in some small set of values, and name is as well.
答案1
得分: 0
-
在事件表上添加一个触发器,当插入/更新时,查找action_type_id的类别并进行验证。
-
修改你的表,创建一个多列外键关系,包括键(id, category),然后在事件表中添加一个检查约束,要求category为"category1"。
-
在你的模式中添加一个中间表,例如"category1s",其中包含键(id, category)和所需类别的检查约束,但也包含其自己的独立主键列,然后事件表引用该列。
还有其他方法来处理这个问题,但要记住,“最佳”解决方案取决于多种因素,比如你期望每个表中有多少行,每个表中的行会被修改多频繁,最重要的是哪种方法提供了你舒适的思维模型。
另外,值得一提的是,这不是Postgres的限制,而更像是一个一般性的关系建模问题。如果你想进一步研究,你要找的术语是“条件外键”。
英文:
There is no way to do this directly, although there are (at least) 3 ways you can do this indirectly
-
Add a trigger on the event table on insert/update which looks up the category of the action_type_id and validates it.
-
Modify your tables to create a multi-column FK relationship on key(id, category), and then add a check constraint in the event table that requires category to be "category1"
-
Add an intermediate table to your schema, like "category1s", which contains key(id, category) and a check constraint on the desired category, but also contains its own individual id primary key column, which would then be referenced by the events table.
There are likely some other ways to approach this, just keep in mind that the "best" solution will depend on a number of factors such as how many rows you expect in each table, how often rows in each of these tables will be modified, and maybe most of all which one provides you with a mental model you are comfortable with.
Oh, and it may be worth saying that this isn't a Postgres limitation, but more of a general relational modeling problem. If you want to research it further, the term you are looking for is "Conditional Foreign Key".
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论