How do I do a "!>" in Valentina? I can't find a not greater than operator.
<div><br></div><div>It's a simple select:</div><div><br></div><div>select field from table-name where field !> 10</div><div><br></div><div>Since there is not a "not greater than" operator I must have to do this backwards somehow.</div>
<div><br></div><div>I can't do:</div><div><br></div><div>select field from table-name where field < 10</div><div><br></div><div>Because then I get all the fields because they all have the value 1 to 10 in them but because that operator is not there maybe I can do this with some kind of range? I'm looking for the field which has 1 to 9 but does not have any values greater than that. </div>