We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://cloud.google.com/spanner/docs/reference/standard-sql/ml-functions#mlpredict
ML.PREDICT(input_model, input_relation[, model_parameters]) input_model: MODEL model_name input_relation: { input_table | input_subquery } input_table: TABLE table_name model_parameters: STRUCT(parameter_value AS parameter_name[, ...])
I think it can be a generalized as TVF with path name.
ZetaSQL references
https://github.com/google/zetasql/blob/194cd32b5d766d60e3ca442651d792c7fe54ea74/zetasql/parser/gen_parse_tree.py#L5434-L5538
TVF has ASTTableClause and ASTModelClause.
ASTTableClause
ASTModelClause
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://cloud.google.com/spanner/docs/reference/standard-sql/ml-functions#mlpredict
I think it can be a generalized as TVF with path name.
ZetaSQL references
https://github.com/google/zetasql/blob/194cd32b5d766d60e3ca442651d792c7fe54ea74/zetasql/parser/gen_parse_tree.py#L5434-L5538
TVF has
ASTTableClause
andASTModelClause
.The text was updated successfully, but these errors were encountered: