Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2023 12:40 AM
You do have to put a space between the brackets on either side of the parameter and it should work
{{ schema_name }}
SELECT * FROM {{ schema_table_name }}
Databricks requires that you wrap date and time values in single quotes (')
SELECT *
FROM usage_logs
WHERE date = '{{ date_param }}'