Query operators

These operators are used solely for constructing query expressions using the Query object.

Note The Query object has been deprecated, but older JavaScript code within the ScriptLibrary still uses the object.

Query operator Description

EQ

Equals to

LIKE

Starts with

NEQ

Not equal to

GT

Greater than

GE

Greater or equal to

LT

Lower than

LE

Lower or equal to

ISIN

Is an element in the array

Example:

var q=new SCFile("probsummary")
q.doSelect(new QueryCond("number", EQ, "IM10002"));