You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH(variable_assignment[, ...], result_expression)
variable_assignment:
variable_name AS expression
$ go run ./tools/parse --mode query 'SELECT WITH(s AS SUM(input), c AS COUNT(input), s/c) FROM UNNEST([1.0, 2.0, 3.0]) AS input;'
2024/10/04 01:34:52 syntax error::1:8: unexpected token: WITH
1: SELECT WITH(s AS SUM(input), c AS COUNT(input), s/c) FROM UNNEST([1.0, 2.0, 3.0]) AS input;
^~~~
exit status 1
WITH
expression is not yet supported.Syntax
https://cloud.google.com/spanner/docs/reference/standard-sql/operators#with_expression
Reference
In ZetaSQL
The text was updated successfully, but these errors were encountered: