How to Translate JMP-where-clause from data filter to SQL-where-clause
Dear Community,I'd like to use the data filter object to let users filter some data to be queried from Oracle database via SQL.So I extracted a small part from data into a JMP table,and put a data filter over it.From Data Filter I can extract the where clause,it may look as follows:Select Where(
(:PC == "A_PROCESS" | :PC == "C_PROCESS" | :PC == "D_PROCESS") & :TC == "01"
& (:POS >= 25 & :POS <=...