mindsdb_sql
mindsdb_sql copied to clipboard
New syntax for creating model from view
At the moment creating model from view require a query to the view:
CREATE or replace MODEL model_name
FROM mindsdb (select * from view)
PREDICT field_name
will be good to be able use mindsdb.view
in the query:
CREATE or replace MODEL model_name
FROM mindsdb.view
PREDICT field_name