How to parse such a query to sql?.. or Do you know any open source parsers which can parse it:
(((adsfa ≤ "value") AND (adsfa > "value")) OR (adsfa = "value"))
AND (adsfa ≤ "value") OR ((adsfa ≤ "value") AND (adsfa ≤ "value"))
AND (adsfa ≤ "value")
I've tried to build my own algorithm with string.Split(stringSeparators,StringSplitOptions.RemoveEmptyEntries)
algorithm is getting more and more complicated but i'm finding more combinations that it can't parse.
- adsfa is column name
- ≤ is operator
- "value" is value
UPDATED: Thank you all, may be I'll use one of the parsers in the next version.