Foreign Key normalization question

Поиск
Список
Период
Сортировка
От Matthew Wilson
Тема Foreign Key normalization question
Дата
Msg-id slrngbr449.gge.matt@sprout.tplus1.com
обсуждение исходный текст
Ответы Re: Foreign Key normalization question  (Martin Gainty <mgainty@hotmail.com>)
Re: Foreign Key normalization question  ("Scott Marlowe" <scott.marlowe@gmail.com>)
Список pgsql-general
I'm building an app that has a customers table, a locations table, a
products table, and a product_locations table.

They make a diamond shape.

The locations table and the products table each have a customer_id
column that links back to the customers table.

Then the product_locations table table has just two columns: a
location_id column and a product_id column, each linking back to the
appropriate table.

I want to write a constraint or a trigger or something else that makes
sure that before a (location_id, product_id) tuple is inserted into the
product_locations table, the system verifies that the product links to
the same customer as the location.

How do I do this?

Thanks in advance.

Matt


В списке pgsql-general по дате отправления:

Предыдущее
От: "Richard Broersma"
Дата:
Сообщение: Re: MERGE: performance advices
Следующее
От: Martin Gainty
Дата:
Сообщение: Re: Foreign Key normalization question