Postgresql views #513
Answered
by
Fabio286
JeffK-Stantt
asked this question in
Q&A
-
How do Views created with Antares interact with Postgresql--does it create the view on the server (or just run the query)? |
Beta Was this translation helpful? Give feedback.
Answered by
Fabio286
Jan 5, 2023
Replies: 1 comment 1 reply
-
Hi Jeff, views on PostgreSQL are created with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JeffK-Stantt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Jeff,
views on PostgreSQL are created with
CREATE VIEW "<SCHEMA NAME>.<VIEW NAME>" AS <QUERY>
and persist on the server.