I’m new to Apache Superset and trying to create a dataset in sqllab query editor with parameters similar to the query below
select * from employee_details where employee_id = {{ employee_id }}
and passing parameter like {"employee_id":3 }
I can run the query without any issue but unable to save the query as a dataset
error from docker log :
superset. exceptions.SupersetGenericDBErrorException: syntax error at or near “{”
2024-06-11 12:18:51 superset_app | LINE 1: …ELECT * FROM employee_details WHERE employee_id = {{ employe…
2024-06-11 12:18:51 superset_app |
actual requirement create a user report chart based on userid as input parameter(dynamically)