My needs are as follows
- before
select * from tablename where id = 18 and name='$null$'
- Handling by JSqlParser
some code like
if where clause contians `$null$` value, remove this where expression
- after
select * from tablename where id = 18
please help,Thank you very much。