mindsdb_sql icon indicating copy to clipboard operation
mindsdb_sql copied to clipboard

New syntax for creating model from view

Open StpMax opened this issue 8 months ago • 5 comments

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

StpMax avatar May 24 '24 07:05 StpMax