exasol / sql-statement-builder

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

Add support for SELECT FROM (SELECT ...) queries #77

Closed jakobbraun closed 4 years ago

jakobbraun commented 4 years ago

Add support for selecting from sub selects.

For example: SELECT * FROM (SELECT * FROM ...)

Until now the sql-statement-builder has no support for adding subselcets to the from clause.