• Tidak ada hasil yang ditemukan

IF3111 - Operasi Aljabar Relasional

N/A
N/A
Protected

Academic year: 2019

Membagikan "IF3111 - Operasi Aljabar Relasional"

Copied!
36
0
0

Teks penuh

(1)

1

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 1

I F3111 - Operasi Aljabar Relasional

Wikan Danar

(2)

2

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 2

Relational Algebra

• Procedural language

• Six basic operators

– select

– project

– union

– set difference

– cartesian product

– rename

(3)

3

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 3

Select Operation

• Notation:

σ

p

(

r

)

pis called the selection predicate • Defined as:

σ

p

(

r) = {t | tr and p(t)}

Wherep is a formula in propositional calculus consisting of terms connected by : ∧ (and), ∨(or), ¬ (not)

Each t erm is one of:

< attribute> op < attribute> or < constant>

• Example of selection:

σ

branch- name= “Perryridge(account)

(4)

4

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 4

Project Operation

• Notation:

∏A1, A2, …,Ak(r)

where A1, A2are attribute names and r is a relation name. • The result is defined as the relation of kcolumns obtained by

erasing the columns that are not listed

• Duplicate rows removed from result, since relations are sets • E.g. To eliminate the branch -nameattribute of account

account-number, balance(account)

(5)

5

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 5

1. r, smust have the same arity(same number of attributes)

2. The attribute domains must be compatible(e.g., 2nd column of r

deals with the same type of values as does the 2nd column of s)

• E.g. to find all customers with either an account or a loan

customer-name(depositor) ∪ ∏customer-name (borrower)

(6)

6

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 6

Set Difference Operation

• Notation

r – s

• Defined as:

r – s = {t | trandt ∉s}

• Set differences must be taken between

compatible

relations.

r and smust have the same arity

– attribute domains of r and s must be compatible

r – s:

A B

α α β

1 2 1

A B

α β 23

r s A B

(7)

7

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 7

Cartesian-Product Operation

• Notationr x s

• Defined as:

rx s = {t q | t r and q s}

• Assume that attributes of r(R) and s(S) are disjoint. (That is,

RS= ∅).

• I f attributes of r ( R)and s(S) are not disjoint, then renaming must be used.

(8)

8

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 8

Rename Operation

• Allows us to name, and therefore to refer to, the

results of relational-algebra expressions.

• Allows us to refer to a relation by more than one

name.

Example:

ρ

x

(

E

)

returns the expression

E

under the name

X

I f a relational-algebra expression

E

has arity

n

, then

ρ

x(A1, A2, …, An)

(

E

)

(9)

9

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 9

Composition of Operations

(10)

10

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 10

Banking Example

branch (branch-name, branch-city, assets)

customer (customer-name, customer-street,

customer-only)

account (account -number, branch-name,

balance)

loan (loan-number, branch-name, amount)

depositor (customer-name, account-number)

(11)

11

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 11

Example Queries

• Find all loans of over $1200:

σ

amount > 1200

(

loan

)

– Find the loan number for each loan of an amount greater than $1200

loan- number

(

σ

amount > 1200

(

loan

))

• Find the names of all customers who have a

loan, an account, or both, from the bank

customer-name(borrower) ∪ ∏customer- name(depositor)

– Find the names of all customers who have a loan and an account at bank.

(12)

12

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 12

Example Queries (Cont.)

• Find the names of all customers who have a loan

at the Perryridge branch.

n Find the names of all customers who have a loan at the Perryridge branch but do not have an account at any branch of the bank.

customer-name(

σ

branch- name = “ Perryridge”

(

σ

borrower.loan -number = loan.loan -number(

borrower x loan

))) –

customer- name(

depositor

)

customer- name

(

σ

branch-name=“ Perryridge

(13)

13

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 13

Example Queries (Cont.)

• Find the names of all customers who have a loan at the

Perryridge branch.

− Query 2

∏c u s t o m e r - n a m e(σl o a n . l o a n- n u m b e r = b o r r o w e r . l o a n - n u m b e r( (σb r a n c h- n a m e = “ P e r r y r i d g e ”(loan)) x borrower)) − Query 1

∏c u s t o m e r - n a m e(σbranch- n a m e = “ P e r r y r i d g e ” (

σb o r r o w e r . l o a n- n u m b e r = l o a n . l o a n- n u m b e r(borrower x loan)))

• Find the largest account balance

• Rename

account

relation as

d

b a l a n c e(account) -∏a c c o u n t . b a l a n c e

(14)

14

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 14

Formal Definition

• A basic expression in the relational algebra consists

of either one of the following:

– A relation in the database – A constant relation

• Let

E

1

and

E

2

be relational-algebra expressions; the

following are all relational-algebra expressions:

E1E2E1 -E2E1 x E2

– σp (E1), Pis a predicate on attributes in E1

– ∏s(E1), Sis a list consisting of some of the attributes in E1

(15)

15

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 15

Additional Operations

Some additional operations are defined that do

not add any power to the relational algebra,

but that simplify common queries.

(16)

16

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 16

Set-I ntersection Operation

• Notation:

r

s

• Defined as:

r

s

= {

t

|

t

r

and

t

s

}

• Assume:

r, shave the same arity

– attributes of r and s are compatible

• Note:

r

s

=

r

- (

r

-

s

)

A B α α β

1 2 1

A B

α β 23

r s A B

(17)

17

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

(18)

18

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 18

Division Operation

• Notasi:

r

÷

s

• Suited to queries that

include the phrase “for

all”.

relation on schema

RS = (A1, …, Am)

(19)

19

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 19

Assignment Operation

• The assignment operation (←) provides a convenient way to express complex queries.

– Write query as a sequential program consisting of

• a series of assignments

• followed by an expression whose value is displayed as a result o f the query.

– Assignment must always be made to a temporary relation variable.

• Example: Write r÷ sas

temp1← ∏R-S(r)

temp2 ← ∏R-S ((t emp1 x s) – ∏R-S,S(r))

result = temp1 –temp2

– The result to the right of the ←is assigned to the relation variable on the left of the ←.

(20)

20

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 20

Example Queries

• Find all customers who have an account from at least

the “Downtown” and the Uptown” branches.

where CNdenotes customer-name and B Ndenotes

branch -name. Query 1

CN(

σ

B N=“Downtown”(depositor account)) ∩ ∏C N(

σ

B N=“U p t o w n”(depositor account))

Query 2

customer- name, branch- n a m e(depositor account)

(21)

21

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 21

Extended Relational-Algebra-Operations

• Generalized Projection

• Outer Join

(22)

22

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 22

Generalized Projection

• Extends the projection operation by allowing

arithmetic functions to be used in the projection list.

F1, F2, …, Fn

(

E

)

E

is any relational-algebra expression

• Each of

F

1

,

F

2

, …,

F

n

are are arithmetic expressions

involving constants and attributes in the schema of

E

.

• Given relation

credit-info(customer-name, limit,

credit-balance),

find how much more each person

can spend:

(23)

23

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 23

Aggregate Functions and Operations

Aggregation functiontakes a

collection of values and returns a single value as a result.

avg: average value min: minimum value max: maximum value sum: sum of values count: number of values

Aggregate operationin relational

algebra

G1, G2, …, Gn

g

F1( A1), F2( A2),…, Fn( An)(E)

Eis any relational-algebra expression

G1, G2 …, Gn is a list of attributes on which to group (can be empty) – Each Fiis an aggregate function – Each Aiis an attribute name

Result of aggregation does not have a name

Can use rename operation to give it a name

branch-name

g

sum

(balance)

as

sum-balance

(24)

24

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 24

Outer Join

• An extension of the join operation that avoids

loss of information.

• Computes the join and then adds tuples form

one relation that does not match tuples in the

other relation to the result of the join.

• Uses

null

values

Uses nullvalues:

null signifies that the value is unknown or does not exist

(25)

25

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 25

Outer Join (Cont.)

3000

customer-n a m e branch -name

loan borrower

loan-n u m b e r amount

customer-n a m e

Jones

(26)

26

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 26

Null Values

• I t is possible for tuples to have a null value, denoted

by

null

, for some of their attributes

null

signifies an unknown value or that a value does

not exist.

• The result of any arithmetic expression involving

null

is

null.

• Aggregate functions simply ignore null values

– I s an arbitrary decision. Could have returned null as result instead.

– We follow the semantics of SQL in its handling of null values

• For duplicate elimination and grouping, null is treated

like any other value, and two nulls are assumed to be

the same

(27)

27

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 27

Null Values

• Comparisons with null values return the special truth

value

unknown

– If false was used instead of unknown, then not (A < 5)

would not be equivalent to A > = 5

• Three-valued logic using the truth value

unknown

:

– OR: (unknown or t rue) = t r u e,

(unknown orfalse) = unknown

(unknown orunknown) = unknown

– AND: ( t rueand unknown) = unknown,

(false and unknown) = false,

(unknown andunknown) = unknown

– NOT: (not unknown) = unknown

– I n SQL “Pis unknow n” evaluates to true if predicate P

evaluates to unknown

(28)

28

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 28

Modification of the Database

• The content of the database may be

modified using the following operations:

– Deletion

– I nsertion

– Updating

(29)

29

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 29

Deletion

• A delete request is expressed similarly to a query, except instead of displaying tuples to the user, the selected tuples are removed from the database.

• Can delete only whole tuples; cannot delete values on only particular attributes

• A deletion is expressed in relational algebra by:

rrE

where r is a relation and Eis a relational algebra query.

Delete all accounts at branches located in Needham.

r1

σ

b r a n c h - c i t y = “ N e e d h a m ” (account branch)

r2 ← ∏b r a n c h- n a m e , a c c o u n t - n u m b e r , b a l a n c e(r1)

r3 ← ∏c u s t o m e r - n a m e , a c c o u n t - n u m b e r (r2 depositor)

(30)

30

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 30

I nsertion

• To insert data into a relation, we either:

– specify a tuple to be inserted

– write a query whose result is a set of tuples to be inserted

• in relational algebra, an insertion is expressed by:

r rE

where r is a relation and Eis a relational algebra expression.

• The insertion of a single tuple is expressed by letting Ebe a constant relation containing one tuple.

Provide as a gift for all loan customers in the Perryridge branch, a $200 savings account. Let the loan number serve

as the account number for the new savings account.

r1←(σ

b r a n c h -n a m e = “P e r r y r i d g e”(borrower loan))

account account∪ ∏branch -name, account -number,200(r1)

(31)

31

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 31

Updating

• A mechanism to change a value in a tuple without

charging

all

values in the tuple

• Use the generalized projection operator to do this task

r

← ∏

F1, F2, …, FI,

(

r

)

• Each

F

i

is either

– the ith attribute of r, if the ith attribute is not updated, or, – if the attribute is to be updated Fi is an expression, involving

only constants and the attributes of r, which gives the new value for the attribute

Pay all accounts with balances over $10,000 6 percent interest and pay all others 5 percent

(32)

32

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 32

Views

• I n some cases, it is not desirable for all users to

see the entire logical model (i.e., all the actual

relations stored in the database.)

• Consider a person who needs to know a

customer’s loan number but has no need to see

the loan amount. This person should see a

relation described, in the relational algebra, by

customer-name, loan-number

(

borrower loan

)

• Any relation that is not of the conceptual model

but is made visible to a user as a “virtual

(33)

33

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 33

View Definition

• A view is defined using the

create view

statement

which has the form

create view

v

as

<

query expression>

where < query expression> is any legal relational

algebra query expression. The view name is

represented by

v.

• Once a view is defined, the view name can be used

to refer to the virtual relation that the view

generates.

• View definition is not the same as creating a new

relation by evaluating the query expression

(34)

34

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 34

View Examples

• Consider the view (named

all-customer

)

consisting of branches and their customers.

n We can find all customers of the Perryridge branch by writing:

create view all-customer as

b r a n c h- n a m e , c u s t o m e r - n a m e(depositor account)

∪ ∏b r a n c h - n a m e , c u s t o m e r - n a m e(borrower loan)

b r a n c h- n a m e

(35)

35

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 35

Updates Through View

• Database modifications expressed as views must be

translated to modifications of the actual relations in

the database.

• Consider the person who needs to see all loan data in

the

loan

relation except

amount.

The view given to

the person,

branch-loan,

is defined as:

create view branch - loan asbranch-name, loan-number (loan)

• Since we allow a view name to appear wherever a

relation name is allowed, the person may write:

branch -loan branch -loan ∪ { (“ Perryridge” , L-37)}

(36)

36

IF-ITB/WD dari Silberschatz, modifikasi TW/6 Okt’03 IF3111 – Aljabar Relasional

Page 36

Updates Through Views (Cont.)

• An insertion into

loan

requires a value for

amount

. The

insertion can be dealt with by either.

– rejecting the insertion and returning an error message to the user.

– inserting a tuple (“L-37” , “ Perryridge” , null) into the loan

relation

• Some updates through views are impossible to translate

into database relation updates

– create view v as

σ

branch -name= “ Perryridge” (account)) v ←v ∪(L-99, Downtown, 23)

• Others cannot be translated uniquely

all- customerall-customer ∪ { (“ Perryridge” , “ John” )}

• Have to choose loan or account, and create a new loan/ account number!

Referensi

Dokumen terkait

Selain itu Kualitas Pelayanan, Kepercayaan dan Kepuasan Konsumen secara simultan berpengaruh positif terhadap Word of Mouth ditunjukkan dengan koefisien determinasi

Hasil analisis regresi menunjukkan bahwa kadar lemak susu pasteurisasi pada metode LTLT tidak nyata berkorelasi dengan lama penyimpanan, namun pada suhu HTST nyata berkorelasi.

Tidak ada batasan dalam menggunakan karya-karya yang berada di PD, yang berarti dapat menggunakannya. Sayangnya, tidak mudah untuk menyatakan konten tersebut berada dalam

text of a Muslimah, the writer would like to use Critical Discourse Analysis by Sara Mills as a method along with Progressive Muslim by Omid Safi as the

Berdasarkan Peraturan Direktur Jendral Pajak Nomor PER – 39/PJ/2009 menyatakan bawha berdasarkan pertimbangan dimaksud pada huruf a dan dalam rangka melaksanakan ketentuan pasal

Lewat fenomenologi, Husserl mau mengembalikan kemampuan rasional manusia dalam bentuk kesadaran yang hadir dan mengarahkan diri kepada objek, sedemikian hingga

Kompetisi inovasi alat penangkapan ikan yang ramah lingkungan tahun 2015 merupakan wujud komitmen Kementerian Kelautan dan Perikanan dalam hal ini Direktorat Kapal Perikanan

Hasil dari penelitian ini yang diakukan dengan iterasi metode simpleks dan dengan alat bantu software POM QM For Windows V5 menunjukkan bahwa produksi yang