exasol / sql-statement-builder

Build SQL statements safely without string concatenation
MIT License
25 stars 4 forks source link

Support `FROM (VALUES('a', 'b))` #17

Closed redcatbear closed 4 years ago

redcatbear commented 5 years ago

Situation

If you have a proprietary data format and want to convert the contents into a SELECT statement that list all contents, the VALUES list constructor is very helpful.

Acceptance Criteria

  1. SSB support
    SELECT * FROM (VALUES('a', 'b'))