|< < 9 > >|

Views

Scripts: See view_metadata.sql.

View metadata

create table t( k int not null primary key, x int not null check(x > 0), f double precision ); \d t create view v as select k, x, f + 10, sqrt(f) as root_f from t; \d v

|< < 9 > >|