Closed jakobbraun closed 4 years ago
I could not find a way to build queries like: SELECT COL1 FROM VALUES (1, 2) AS T(COL1, COL2) I was not able to build this query using the sql-statemant-builder as I could not find a way to build part is the AS T(COL1, COL2) part.
SELECT COL1 FROM VALUES (1, 2) AS T(COL1, COL2)
AS T(COL1, COL2)
Closed with #84
I could not find a way to build queries like:
SELECT COL1 FROM VALUES (1, 2) AS T(COL1, COL2)
I was not able to build this query using the sql-statemant-builder as I could not find a way to build part is theAS T(COL1, COL2)
part.