Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7788339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T20:58:04+00:00 2026-06-01T20:58:04+00:00

Suppose I have the following tables CREATE TABLE plugins ( id int primary key,

  • 0

Suppose I have the following tables

CREATE TABLE plugins (
id int primary key,
type text);

insert into plugins values (1,'matrix');
insert into plugins values (2,'matrix');
insert into plugins values (3,'function');
insert into plugins values (4,'function');

CREATE TABLE matrix_params (
id int primary key,
pluginid int references plugins (id)
);

This all works as expected but I would like to add an additional constraint that a matrix_param can only refer to the pluginid that has type ‘matrix’. So

insert into matrix_params values (1,1);

Should succeed but

insert into matrix_params values (2,3);

Should fail.

A simple constraint for matrix_params does not work as it has no way of knowing what the corresponding type is in the plugins table.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T20:58:06+00:00Added an answer on June 1, 2026 at 8:58 pm

    You can use a CHECK constraint for this. You can’t put a query in a CHECK constraint but you can call a function; so, we build a simple function that tells us if a pluginid is a matrix:

    create or replace function is_matrix(int) returns boolean as $$
        select exists (
            select 1
            from plugins
            where id   = $1
              and type = 'matrix'
        );
    $$ language sql;
    

    and wrap that in a CHECK constraint:

    alter table matrix_params add constraint chk_is_matrix check (is_matrix(pluginid));
    

    Then:

    => insert into matrix_params values (1,1);
    => insert into matrix_params values (2,3);
    ERROR:  new row for relation "matrix_params" violates check constraint "chk_is_matrix"
    

    And the FK takes care of referential integrity and cascades.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have the following tables: CREATE TABLE Game ( GameID INT UNSIGNED NOT
Suppose I have the following table definition: CREATE TABLE x (i serial primary key,
I have the following tables; CREATE TABLE IF NOT EXISTS `tags` ( `tag_id` int(11)
Suppose we have 2 tables, a and b: CREATE TABLE a (id_a INT NOT
suppose i have the following table CREATE TABLE #ResultTable (NettAmount money, GrossAmount money,TotalVat money)
Suppose I have the following table: CREATE TABLE EXAMPLETABLE ( ID NUMBER(10,0) NOT NULL,
Let's suppose I have the following table (let's call it my_table ): CREATE TABLE
Suppose you have to following tables where a sale consists of products and a
Suppose we have the following table data: ID parent stage submitted 1 1 1
Suppose I have the following table: +----------+ | A | B | +----------+ |

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.