Complete the code to name a dbt model file correctly.
models/[1].sqldbt model files should use lowercase letters and underscores to separate words, like customer_orders.sql.
Complete the code to define a model name in dbt's dbt_project.yml file.
models:
my_project:
[1]:
materialized: tableModel names in dbt_project.yml should use lowercase and underscores, matching the file names.
Fix the error in the model name to follow dbt naming conventions.
select * from [1]
dbt model names should be lowercase with underscores, so customer_orders is correct.
Fill both blanks to create a dbt model file path and name following conventions.
models/[1]/[2].sql
Folder names like staging and model file names like customer_orders.sql should be lowercase with underscores.
Fill all three blanks to define a model name, description, and materialization in dbt_project.yml following conventions.
models:
my_project:
[1]:
description: "[2]"
materialized: [3]The model name should be lowercase with underscores (customer_orders), description is a simple string, and materialization is usually table.