vote up 0 vote down star

How can I solve FK contraint? With trigger or something else?

#IF "DELETE FROM human where name='a';", error due to the FK contraist.

# If the error, I want in the order:
# FIRSTLY. DELETE FROM address where name='a';
# SECONDLY. DELETE FROM human where name='a';


DROP TABLE human;
DROP TABLE address;

CREATE TABLE human(
        name varchar(300) PRIMARY KEY not null

);

CREATE TABLE address(
        name varchar(300)
                references human.name

);
flag

2 Answers

vote up 4 vote down check
CREATE TABLE address (
    name varchar(300) REFERENCES human (name) ON DELETE CASCADE
);

Is that what you want?

link|flag
vote up 1 vote down

Chapter 5.3.5. Foreign Keys of the fine manual would be very helful.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.