Hi
I am trying to add sql code in a RMarkdown but I don't want to evaluate it. However, this doesn't seem to work:
```{sql, eval = F, connection = con}
SELECT "device", "referrer"
FROM trade
WHERE "purchase" == "true"
Any idea how to do this properly?
Thanks
Renger