Is there a way to pass a parameter into our Druid Queries
Example:
SELECT sellingprice,category,product,sellername
FROM
samplesalesDbmetric
WHERE sellername = ‘ABC’
ABC here should be our parameter
Is there a way to pass a parameter into our Druid Queries
Example:
SELECT sellingprice,category,product,sellername
FROM
samplesalesDbmetric
WHERE sellername = ‘ABC’
ABC here should be our parameter
Do you mean for Druid SQL? It’s not supported currently, although we plan to add it. For now you’re best off escaping strings according to the escaping rules in the Druid SQL docs. (Escape anything questionable using literals like U&‘fo\00F6’)