We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unquote-splicing
let's say I want to write code like this:
(define id-range '(1 10)) (select id sd_id created_at updated_at #:from users #:where (between-and id ,@id-range))
or like this:
(define columns '(id sd_id created_at updated_at)) (select ,@columns #:from users #:where (= id 1))
The text was updated successfully, but these errors were encountered:
No, it doesn't, sorry. For the second example, you could use ScalarExpr:INJECT and turn the fields into a string (comma-separated) yourself.
ScalarExpr:INJECT
Sorry, something went wrong.
No branches or pull requests
let's say I want to write code like this:
or like this:
The text was updated successfully, but these errors were encountered: