...
The following limitations apply to creating datasets from a single statement.
All single-statement SQL queries must begin with a
SELECT
keyword.Selecting columns with the same name, even with
"*"
, is not supported and generates an ambiguous column name error.Tip Tip: You should use fully qualified column names or proper aliasing. See Column Aliasing below.
Users are encouraged to provide fully qualified path to table being used. Example:
Code Block SELECT "id", "value" FROM "public"."my_table"
- You should use proper escaping in SQL.
...