I have a stored procedure(SP) where one of it's param passes the operator.
The operator can be: <=
, >=
, =
How can I use this in the query?
How the operators are passed is not built yet, it can be string represented <=
or by using a custom code 1
, 2
or 3
. What do you think?