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
This is part of Plywood/PlyQL and is currently being done using javascript
javascript
SELECT CONCAT('[', `language`, ']') FROM `wikipedia` GROUP BY 1
I would like to express this:
{ "type": "javascript", "function": "function(str) { return '[' + str + ']'; }", "injective": true }
as
{ "type": "concat", "prefix": "[", "postfix": "]" }
or
{ "type": "sprintf", "expr": "[%s]" }
or equivalent
The text was updated successfully, but these errors were encountered:
3459a20
Merge pull request #2285 from fjy/stringformat
1b359d6
fixed #1873, add ability to express CONCAT as an extractionFn
No branches or pull requests
This is part of Plywood/PlyQL and is currently being done using
javascript
I would like to express this:
as
or
or equivalent
The text was updated successfully, but these errors were encountered: