Use the following guidelines when you include parameters in your queries:
You must use a question mark (?) as a placeholder.
When you use a placeholder with an operator or a predicate, only one side of the expression can use a placeholder. One side of the operation must always contain a value for which the Data Vault Service can determine the datatype.
For example, the following query is valid:
SELECT account_balance
FROM users
WHERE user_name = ?;