Home > Database > Mysql Tutorial > How to Implement Many-to-Many Relationships in PostgreSQL?

How to Implement Many-to-Many Relationships in PostgreSQL?

Mary-Kate Olsen
Release: 2025-01-22 14:42:09
Original
757 people have browsed it

How to Implement Many-to-Many Relationships in PostgreSQL?

Implementing many-to-many relationships in PostgreSQL

Implementing many-to-many relationships in PostgreSQL requires creating a separate bridge table. This table, called the "join table", is used to join the main tables involved in the relationship.

To do this, create the following three tables:

<code class="language-sql">CREATE TABLE product (
  product_id serial PRIMARY KEY,
  product    text NOT NULL,
  price      numeric NOT NULL DEFAULT 0
);

CREATE TABLE bill (
  bill_id serial PRIMARY KEY,
  bill     text NOT NULL,
  billdate date NOT NULL DEFAULT CURRENT_DATE
);

CREATE TABLE bill_product (
  bill_id    int REFERENCES bill (bill_id) ON UPDATE CASCADE ON DELETE CASCADE,
  product_id int REFERENCES product (product_id) ON UPDATE CASCADE,
  amount     numeric NOT NULL DEFAULT 1,
  CONSTRAINT bill_product_pkey PRIMARY KEY (bill_id, product_id)
);</code>
Copy after login

This structure effectively connects the bill_product and product tables through the bill join table, thereby establishing a many-to-many relationship.

The above is the detailed content of How to Implement Many-to-Many Relationships in PostgreSQL?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template