-
We have been working on a custom SQL DSL that is based off of SQL. That DSL should support negated
I have tried many iterations and I'm not getting where to place that negated expr grammar. We went through the langium-sql where clause but still not getting how to support this type of construct. So far EBNF has been very easy to follow except for where expressions due to its recursive nature. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hey @brsanthu, this is effectively just another type of primary expression, see this modified playground example. |
Beta Was this translation helpful? Give feedback.
Hey @brsanthu,
this is effectively just another type of primary expression, see this modified playground example.