tink_sql icon indicating copy to clipboard operation
tink_sql copied to clipboard

Support the CASE expression

Open kevinresol opened this issue 8 years ago • 1 comments

https://dev.mysql.com/doc/refman/5.7/en/control-flow-functions.html#operator_case

kevinresol avatar Sep 07 '17 08:09 kevinresol

How about this for a syntax?

var e:Expr<String> = 'foo';
e.when("foo", 1).when("bar", 2).orElse(3);

POC: https://try.haxe.org/#8a1Ec

back2dos avatar Sep 07 '17 12:09 back2dos