Filter Using Sql Operator


Operator 설명

Operator 파라미터 설명

filed value 설명
subParam.key sql_where 필터의 키값
subParam.value DATE_TIME < '2015_09_01_00_05'ORDER BY DATE_TIME 필터의 조건

Operator 모듈 테스트 결과

입력 데이터

id name city state zipcode
100 John Smith Austin TX 78727
200 Joe Johnson Dallas TX 75201
300 Bob Jone Houston TX 77028
400 Andy Davis San Antonio TX 78227
500 James William Austin TX 78727

결과 데이터

name zipcode
John Smith 78727
Joe Johnson 75201
Bob Jone 77028
Andy Davis 78227
James William 78727
SQL Query:SELECT name,zipcode FROM data_temp WHERE id <'1000' ORDER BY id