Open Lerm opened 12 months ago
Enter following query and try to execute it:
select b.a from unnest(array[1,2,3]) b
The '.a' element will be highlighted as erroneous. Now, add '(a)' to the end of the query:
select b.a from unnest(array[1,2,3]) b(a)
... and execute the query again. The query is now executed, but the '.a' part remains highlighted as error.
Enter following query and try to execute it:
The '.a' element will be highlighted as erroneous. Now, add '(a)' to the end of the query:
... and execute the query again. The query is now executed, but the '.a' part remains highlighted as error.