Complete the code to install dbt using pip.
pip install [1]To install dbt, you use pip install dbt. This installs the main dbt package.
Complete the command to initialize a new dbt project named 'my_project'.
dbt [1] my_projectThe command dbt init my_project creates a new dbt project folder named 'my_project'.
Fix the error in the command to run dbt models after initialization.
dbt [1]The correct command to run models is dbt run. Other options like 'build' or 'execute' are incorrect here.
Fill both blanks to create a new dbt model file named 'orders.sql' inside the models directory.
echo '[1]' > models/[2].sql
The command writes the SQL query select * from raw_orders into a file named orders.sql inside the models folder.
Fill all three blanks to run dbt commands to install dependencies, compile, and then run models.
dbt [1] && dbt [2] && dbt [3]
This sequence installs dependencies (dbt deps), compiles the project (dbt compile), and runs the models (dbt run).