-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
New syntax for creating model from view #379
Comments
Hi @StpMax , |
Yes I think it should create query from table name and then use it as it uses now CREATE my_model FROM mindsdb.my_view PREDICT field_name Should be converted to CREATE my_model FROM (select * from mindsdb.my_view) PREDICT field_name and this CREATE my_model FROM `my.view` PREDICT field_name to CREATE my_model FROM (select * from `my.view`) PREDICT field_name |
Hi @ea-rus, |
Hi @ea-rus,
I have examined the parsed output of 1, and Thanks. |
Both statements (1 and 2) are correct (should be parsed and executed)
|
At the moment creating model from view require a query to the view:
will be good to be able use
mindsdb.view
in the query:The text was updated successfully, but these errors were encountered: