Nam D. Nguyen
Nam D. Nguyen
@yinhao: In your example: {"name": "daily_volume_1", "expression": "sum(case when flag == 1 then volume else 0 end)"} You can use to function "sign" in expression: ``` xml in measure: {"name":...
OK @monolithpl I'll push code madmandLib and appcompat tomorrow. .
Thank @AntonGut: Your idea is very good, I will consider more time to update this feature.
Thank @kuanyui: I'll update an version to support your idea. :+1:
Hi @kyleconroy, Good your idea. But > ```sql > SELECT id FROM users > WHERE id MEMBER OF(CAST(? AS JSON)) > ``` Syntax error with keyword `MEMBER OF` ? I...
I have an idea, using [FIND_IN_SET](https://dev.mysql.com/doc/refman/5.6/en/string-functions.html#function_find-in-set) ``` SELECT id FROM users WHERE FIND_IN_SET(id, ?) ``` But name of variable after run `sqlc generate`: FINDINSET and FINDINSET_2, ... @kyleconroy, How to...