Are there programs documents that allow you to bring SQL Query in a normal form?
Select * from table as A where A.field in ("A", "B", "C") =>
SELECT * FROM table where table.field = "A" OR table.field = "B" OR table.field = "C"
Or any kind that is considered normal in the framework of Tula