Hi Kedro team! Came across this example in the ked...
# questions
m
Hi Kedro team! Came across this example in the kedro-datasets docs
Copy code
mssql_dataset:
  type: kedro_datasets.pandas.SQLQueryDataset
  credentials: mssql_credentials
  sql: >
    SELECT *
    FROM  DateTable
    WHERE date >= ? AND date <= ?
    ORDER BY date
  load_args:
    params:
      - ${begin}
      - ${end}
    index_col: date
    parse_dates:
      date: "%Y-%m-%d %H:%M:%S.%f0 %z"
Where does the params for
begin
and
end
come from?
1
n
Not sure about the example, but if you need to pass parameters in catalog. You can either use $globals or $runtime_params if it is from CLI
this 1
gratitude thank you 1