I am looking at another person's SQL query, and they create the following object prior to the actual query:
@echo ${asOfDate||2017-08-04||Date||where noshow}$ ;
I have tried looking into the ${}$ notation, but with no results. What does this line do?
EDIT: Here is the original query:
SELECT
ID1 ,
ID2 ,
SUM(The_var) AS The_var
FROM
DB1
WHERE
postingdate >= ${asOfDate||2017-07-01||Date||where noshow}$
GROUP BY
1,2;