Complete the code to import the SqlOperator from Airflow.
from airflow.operators.[1] import SqlOperator
The SqlOperator is imported from the airflow.operators.sql module.
Complete the code to create a SqlOperator task with task_id 'run_query'.
run_query = SqlOperator(task_id=[1], sql='SELECT 1')
The task_id should be set to 'run_query' as specified.
Fix the error in the SqlOperator initialization by completing the missing parameter for the database connection id.
run_query = SqlOperator(task_id='run_query', sql='SELECT * FROM users', [1]='my_db')
The correct parameter to specify the database connection is conn_id.
Fill both blanks to create a SqlOperator that runs a query stored in a file and uses the correct connection id.
run_query = SqlOperator(task_id='run_query', sql=[1], [2]='my_conn')
The sql parameter can take a file path string, and the connection parameter is conn_id.
Fill all three blanks to create a SqlOperator that runs a parameterized query with parameters and uses the correct connection id.
run_query = SqlOperator(task_id='run_query', sql=[1], parameters=[2], [3]='my_conn')
The sql is a parameterized query string, parameters is a dictionary with values, and the connection parameter is conn_id.