5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5...

37
Constraints Foreign Keys Foreign Keys Local and Global Constraints Triggers 1

Transcript of 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5...

Page 1: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Constraints

Foreign KeysForeign KeysLocal and Global Constraints

Triggers

1

Page 2: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Constraints and Triggers

A constraint is a relationship among data elements that the DBMS is required to enforce. Example: key constraints.

Triggers are only executed when aTriggers are only executed when a specified condition occurs, e.g., insertion of a tuple. Easier to implement than complex constraints.

2

Easier to implement than complex constraints.

Page 3: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Kinds of Constraints

Keys.Foreign-key, or referential-integrity.Value based constraintsValue-based constraints. Constrain values of a particular attribute.

Tuple-based constraints. Relationship among components Relationship among components.

Assertions: any SQL boolean expression.

3

Page 4: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Review: Single-Attribute Keys

Place PRIMARY KEY or UNIQUE after the type in the declaration of the attribute.Example:Example:

CREATE TABLE Beers (name CHAR(20) UNIQUE,manf CHAR(20)manf CHAR(20)

);

4

Page 5: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Review: Multiattribute Key

The bar and beer together are the key for Sells:CREATE TABLE Sells (

bar CHAR(20),beer VARCHAR(20),price REALprice REAL,PRIMARY KEY (bar, beer)

);

5

Page 6: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Foreign Keys

Values appearing in attributes of one relation must appear together in certain attributes of another relation.Example: in Sells(bar, beer, price), we

might expect that a beer value alsomight expect that a beer value also appears in Beers.name .

6

Page 7: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Expressing Foreign Keys

Use keyword REFERENCES, either:1. After an attribute (for one-attribute keys).2. As an element of the schema:2. As an element of the schema:

FOREIGN KEY (<list of attributes>)REFERENCES <relation> (<attributes>)

Referenced attributes must be declared Referenced attributes must be declared PRIMARY KEY or UNIQUE.

7

Page 8: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: With Attribute

CREATE TABLE Beers (name CHAR(20) PRIMARY KEY,manf CHAR(20) );

CREATE TABLE Sells (bar CHAR(20)bar CHAR(20),beer CHAR(20) REFERENCES Beers(name),price REAL );

8

Page 9: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

E l A S h El tExample: As Schema ElementCREATE TABLE Beers (name CHAR(20) PRIMARY KEY,( ) ,manf CHAR(20) );

CREATE TABLE Sells (CREATE TABLE Sells (bar CHAR(20),beer CHAR(20)beer CHAR(20),price REAL,FOREIGN KEY(beer) REFERENCES

Beers(name));

9

Page 10: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Enforcing Foreign-Key Constraints

If there is a foreign-key constraint from relation R to relation S, two violations are possible:p

1. An insert or update to R introduces l t f d i Svalues not found in S.

2. A deletion or update to S causes some2. A deletion or update to S causes some tuples of R to “dangle.”

10

Page 11: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Actions Taken --- (1)

Example: suppose R = Sells, S = Beers.

An insert or update to Sells that introduces a nonexistent beer must beintroduces a nonexistent beer must be rejected.

A deletion or update to Beers that removes a beer value found in someremoves a beer value found in some tuples of Sells can be handled in three ways (next slide)

11ways (next slide).

Page 12: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Actions Taken --- (2)

1. Default : Reject the modification.

2. Cascade : Make the same changes in S llSells.

Deleted beer: delete Sells tuple.Deleted beer: delete Sells tuple.

Updated beer: change value in Sells.

3. Set NULL : Change the beer to NULL.

12

Page 13: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Cascade

Delete the Bud tuple from Beers:

Then delete all tuples from Sells that have beer = ’Bud’beer = Bud .

Update the Bud tuple by changing ’Bud’ p p y g gto ’Budweiser’:

Then change all Sells tuples with beer = ’Bud’ to beer = ’Budweiser’.

13

Page 14: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Set NULL

Delete the Bud tuple from Beers:

Change all tuples of Sells that have beer = ’Bud’ to have beer = NULLBud to have beer = NULL.

Update the Bud tuple by changing ’Bud’ p p y g gto ’Budweiser’:

Same change as for deletion.

14

Page 15: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Choosing a Policy

When we declare a foreign key, we may choose policies SET NULL or CASCADE independently for deletions and updates.p y p

Follow the foreign-key declaration by:

ON [UPDATE, DELETE][SET NULL, CASCADE]

T h l b dTwo such clauses may be used.

Otherwise, the default (reject) is used.15

Otherwise, the default (reject) is used.

Page 16: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Setting PolicyExample: Setting PolicyCREATE TABLE Sells (CREATE TABLE Sells (bar CHAR(20),beer CHAR(20),price REALprice REAL,FOREIGN KEY(beer)

REFERENCES Beers(name)ON DELETE SET NULLON UPDATE CASCADE

)16

);

Page 17: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Attribute-Based Checks

Constraints on the value of a particular attribute.

Add CHECK(< diti >) t thAdd CHECK(<condition>) to the declaration for the attribute.

The condition may use the name of the att ib te b t an othe elation oattribute, but any other relation or attribute name must be in a subquery.

17

Page 18: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Attribute-Based Check

CREATE TABLE Sells (CREATE TABLE Sells (bar CHAR(20),beer CHAR(20) CHECK ( beer IN

(SELECT name FROM Beers))(SELECT name FROM Beers)),price REAL CHECK ( price <= 5.00 )

);

18

Page 19: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Timing of Checks

Attribute-based checks are performed only when a value for that attribute is inserted or updated.p Example: CHECK (price <= 5.00) checks

every new price and rejects the modificationevery new price and rejects the modification (for that tuple) if the price is more than $5. Example: CHECK (beer IN (SELECT Example: CHECK (beer IN (SELECT name FROM Beers)) not checked if a beer is deleted from Beers (unlike foreign keys)

19

is deleted from Beers (unlike foreign-keys).

Page 20: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Tuple-Based Checks

CHECK (<condition>) may be added as a relation-schema element.

Th diti f tThe condition may refer to any attribute of the relation.

But other attributes or relations require a subquerysubquery.

Checked on insert or update only.20

p y

Page 21: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Tuple-Based Check

Only Joe’s Bar can sell beer for more than $5:CREATE TABLE Sells (

bar CHAR(20),beer CHAR(20),price REALprice REAL,CHECK (bar = ’Joe’’s Bar’ OR

price <= 5.00));

21

Page 22: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Assertions

These are database-schema elements, like relations or views.

Defined by:Defined by:

CREATE ASSERTION <name>

CHECK (<condition>);

Condition may refer to any relation or attribute in the database schema.

22

attribute in the database schema.

Page 23: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Assertion

In Sells(bar, beer, price), no bar may h f th $5charge an average of more than $5.

CREATE ASSERTION NoRipoffBars CHECK (p (NOT EXISTS (

SELECT bar FROM SellsBars with anaverage priceSELECT bar FROM Sells

GROUP BY baraverage priceabove $5

HAVING 5.00 < AVG(price)));

23

));

Page 24: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Assertion

In Drinkers(name, addr, phone) and B ( dd li ) th t bBars(name, addr, license), there cannot be more bars than drinkers.

CREATE ASSERTION FewBar CHECK ((SELECT COUNT(*) FROM Bars) <=(SELECT COUNT(*) FROM Drinkers)(SELECT COUNT(*) FROM Drinkers)

);

24

Page 25: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Timing of Assertion Checks

In principle, we must check every assertion after every modification to any relation of the database.

A clever system can observe that only t i h ld icertain changes could cause a given

assertion to be violated. Example: No change to Beers can affect

FewBar Neither can an insertion to Drinkers25

FewBar. Neither can an insertion to Drinkers.

Page 26: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Triggers: Motivation

Assertions are powerful, but the DBMS often can’t tell when they need to be checked.

Attribute- and tuple-based checks are h k d t k ti b t tchecked at known times, but are not

powerful.

Triggers let the user decide when to check for any condition

26check for any condition.

Page 27: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Event-Condition-Action Rules

Another name for “trigger” is ECA rule, or event condition action ruleor event-condition-action rule.

Event : typically a type of databaseEvent : typically a type of database modification, e.g., “insert on Sells.”

Condition : Any SQL boolean-valued expressionexpression.

Action : Any SQL statements.27

y Q

Page 28: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Preliminary Example: A Trigger

Instead of using a foreign-key constraint and rejecting insertions into Sells(bar, beer, price) with unknown ( , , p )beers, a trigger can add that beer to Beers with a NULL manufacturerBeers, with a NULL manufacturer.

28

Page 29: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Example: Trigger Definition

CREATE TRIGGER BeerTrig The event

AFTER INSERT ON SellsREFERENCING NEW ROW AS NewTuplepFOR EACH ROWWHEN (NewTuple beer NOT IN

The conditionWHEN (NewTuple.beer NOT IN

(SELECT name FROM Beers))INSERT INTO Beers(name)

VALUES(NewTuple.beer); The action

29

( p );

Page 30: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Options: CREATE TRIGGER

CREATE TRIGGER <name>Or:CREATE OR REPLACE TRIGGER <name>CREATE OR REPLACE TRIGGER <name> Useful if there is a trigger with that name

d d f hand you want to modify the trigger.

30

Page 31: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Options: The Event

AFTER can be BEFORE. Also, INSTEAD OF, if the relation is a view.

• A clever way to execute view modifications:• A clever way to execute view modifications: have triggers translate them to appropriate modifications on the base tables.modifications on the base tables.

INSERT can be DELETE or UPDATE. And UPDATE can be UPDATE . . . ON a

particular attribute.31

p

Page 32: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Options: FOR EACH ROW

Triggers are either “row-level” or “ t t t l l ”“statement-level.”FOR EACH ROW indicates row-level; itsFOR EACH ROW indicates row level; its

absence indicates statement-level.Row level triggers : execute once forRow level triggers : execute once for

each modified tuple.Statement-level triggers : execute once

for a SQL statement, regardless of how 32

Q , gmany tuples are modified.

Page 33: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Options: REFERENCING

INSERT statements imply a new tuple (f l l) t bl (f(for row-level) or new table (for statement-level). The “table” is the set of inserted tuples.

DELETE implies an old tuple or tableDELETE implies an old tuple or table.UPDATE implies both.Refer to these by[NEW OLD][TUPLE TABLE] AS

33[NEW OLD][TUPLE TABLE] AS <name>

Page 34: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Options: The Condition

Any boolean-valued condition.

Evaluated on the database as it would exist before or after the triggeringexist before or after the triggering event, depending on whether BEFORE or AFTER is usedor AFTER is used. But always before the changes take effect.y g

Access the new/old tuple/table through the names in the REFERENCING clause

34the names in the REFERENCING clause.

Page 35: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Options: The Action

There can be more than one SQL statement in the action.

Surround by BEGIN END if there is Surround by BEGIN . . . END if there is more than one.

But queries make no sense in an action so we are really limited toaction, so we are really limited to modifications.

35

Page 36: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

Another Example

Using Sells(bar, beer, price) and a unary relation RipoffBars(bar), maintain a list of bars that raise the price of any p ybeer by more than $1.

36

Page 37: 5 Constraints and Triggers.ppt [兼容模式]idc.hust.edu.cn/~rxli/teaching/database/slides2013/5 Constraints... · Constraints and Triggers A constraint is a relationship among data

The Trigger The event –only changes

CREATE TRIGGER PriceTrigAFTER UPDATE OF i ON S ll

only changesto prices

AFTER UPDATE OF price ON SellsREFERENCING Updates let us

OLD ROW AS oooNEW ROW AS nnn

talk about oldand new tuples

We need to consider

Condition:a raise inprice > $1

FOR EACH ROWWHEN(nnn.price > ooo.price + 1.00)

We need to considereach price change

price > $1

WHEN(nnn.price ooo.price 1.00)INSERT INTO RipoffBars

VALUES(nnn bar);When the price changeis great enough, add

37

VALUES(nnn.bar); the bar to RipoffBars