Cvičení 9

Témata

Pohledy

(ukázka)

Aktualizovatelnsot relační proměnné

Virtuální vs. základní relační proměnná.

Jak je to v PostgreSQL?

Simple views are automatically updatable: the system will allow INSERT, UPDATE and DELETE statements to be used on the view in the same way as on a regular table. A view is automatically updatable if it satisfies all of the following conditions:

The view must have exactly one entry in its FROM list, which must be a table or another updatable view.

The view definition must not contain WITH, DISTINCT, GROUP BY, HAVING, LIMIT, or OFFSET clauses at the top level.

The view definition must not contain set operations (UNION, INTERSECT or EXCEPT) at the top level.

The view's select list must not contain any aggregates, window functions or set-returning functions.

(ukázka)

Skalární výrazy

Skalární výrazy typu integer

Skalární výrazy typu boolean

Skalární funkce

Vypočítané atributy

Vypočítané atributy a aktualizovatelnost

Pořádí n-tic

Části tabulky

Ukázky z hodiny

Úkoly