Quiz: Models
Test your knowledge of models in dbt.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
(Select all that apply.) Which is a valid model file?
A.
SELECT "Hello World" AS message
B.
CREATE VIEW dataset.hello_world AS ( SELECT "Hello World" AS message)
C.
{{config(dataset="new_dataset")}}
SELECT "Hello World" AS message
D.
- column: message
value: "Hello World"
1 / 5
...