SQL in() operator

marc

New member
Here's a suggestion for the calculator: add the in() operator, which works in the same way as in SQL:



Article in(‘TR99’, ‘VEPK’)

Equivalent to

Article == ‘TR99’ || Article == ‘VEPK’
 

Support

Administrator
Staff member
Here's a suggestion for the calculator: add the in() operator, which works in the same way as in SQL:



Article in(‘TR99’, ‘VEPK’)

Equivalent to

Article == ‘TR99’ || Article == ‘VEPK’
If you have a situation with a complex ‘in’ operation, I suggest you use the ‘FilterOnKey’ box: it's like SQL's ‘IN’ (but ultra-efficient and more ‘visual’): there's an example attached.
 

Attachments

  • marc_in_instraction_in_SQL.anatella
    1.6 KB · Views: 15
Top