In the following query:
SELECT * from TABLE
WHERE Amount = +1;
Does the "+" sign just mean positive?
Is there a technical difference between using that query with or without the sign?
According to a similar question in a different thread,
unary plus operator will convert a string argument to a number. When applied to a constant string filled with digits, this could actually be beneficial as a way of encouraging the compiler to use an index on a numeric field.
That answer was given in a different context, but may answer my question too.