View erstellt wird

Werbung:
Hallo, weiß jemand wie man eine viw (Datei) in OpenOffice Datenbank oder Libre Office Datenbank erstellet.
Dazu gibt es eine Doku. In PG z.B. so: (in psql via \h<command>)

Code:
postgres=# \h create view
Command:     CREATE VIEW
Description: define a new view
Syntax:
CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] [ RECURSIVE ] VIEW name [ ( column_name [, ...] ) ]
    [ WITH ( view_option_name [= view_option_value] [, ... ] ) ]
    AS query
    [ WITH [ CASCADED | LOCAL ] CHECK OPTION ]

URL: https://www.postgresql.org/docs/16/sql-createview.html

postgres=#
 
Zurück
Oben