54
edits
(Adding note about DESCRIBE operator) |
(Filling out resources section) |
||
| Line 93: | Line 93: | ||
CREATE OR REPLACE VIEW view_name AS ... | CREATE OR REPLACE VIEW view_name AS ... | ||
Be careful not to overwrite an existing view! Using a unique name is important. | Be careful not to overwrite an existing view! Using a unique name is important. | ||
Find more information [https://prestodb.io/docs/current/sql/create-view.html here]. | |||
=== Other Resources === | |||
* [https://prestodb.io/docs/current/sql.html Presto Docs] | |||
* [https://github.com/mozilla/telemetry-batch-view/blob/master/src/main/scala/com/mozilla/telemetry/views/Longitudinal.scala#L194 Longitudinal schema definition] | |||
* [[Custom_dashboards_with_re:dash]] | |||
=== FAQ === | === FAQ === | ||
==== I'm getting an error, "... cannot be resolved" ==== | ==== I'm getting an error, "... cannot be resolved" ==== | ||
For some reason, re:dash has trouble parsing SQL strings with double quotes. Try using single quotes instead. | For some reason, re:dash has trouble parsing SQL strings with double quotes. Try using single quotes instead. | ||
edits