Is it possible to define an inline array to use with the IN operator in Oracle SQL 12c? Pseudo code:
SELECT *
FROM T_AUDIO_PLAYERS
WHERE NAME IN {'foo', 'bar'};
Background: I have a Java tool, that's reading in valid .SQL files and replaces SQL-Variables like :NAME before execution.
{}is invalid syntax, you need to use().WHERE NAME IN ('foo', 'bar').