According to what I have read in the docs, DynamoDB supports PartiQL, which in turn supposedly supports arithmetic operators (such as +, -, *, /).
https://docs.aws.amazon.com/qldb/latest/developerguide/ql-operators.html
When I try to perform a sum in a query, where I try to add 1 to each and every element of a specific column (my_column) which is of type N - number
, as in:
SELECT eventTime, my_column + 1
FROM MyTable
WHERE eventTime BETWEEN 1615161600000 AND (1615165200000)
The above statement results in the following error:
What am I missing or doing wrong?
Thanks in advance.