Complete the code to add a description to the column customer_id in a dbt model.
columns:
- name: customer_id
description: "[1]"The description field should explain what the column customer_id represents. Here, it is the unique identifier for each customer.
Complete the code to add a description for the order_date column in a dbt model.
columns:
- name: order_date
description: "[1]"order_date with customer ID or priceThe order_date column stores the date when the order was placed, so the description should reflect that.
Fix the error in the column description for total_amount by selecting the correct description.
columns:
- name: total_amount
description: "[1]"The total_amount column should describe the total value of the order, usually in a currency like USD.
Fill both blanks to add descriptions for product_id and quantity columns in a dbt model.
columns:
- name: product_id
description: "[1]"
- name: quantity
description: "[2]"product_id is the unique ID for products, and quantity is the number of units ordered.
Fill all three blanks to add descriptions for user_id, signup_date, and is_active columns in a dbt model.
columns:
- name: user_id
description: "[1]"
- name: signup_date
description: "[2]"
- name: is_active
description: "[3]"is_active with login countsuser_id is the unique user ID, signup_date is when the user joined, and is_active shows if the account is currently active.