information_schema
), one default project (mindsdb
), and two base tables (models
and models_versions
) that belong to the default project.
You can verify it by running the following SQL commands:
information_schema
Databaseinformation_schema
database contains all the system tables, such as databases
, tables
, columns
, ml_engines
, etc.
You can query for any system information using this query template:
mindsdb
Projectmindsdb
. But you can create your projects using the CREATE DATABASE
statement, as below:
_view
to the view name.models
and models_versions
Tablesmindsdb
project and every project that you create contain these two tables by default:
models
table stores information about the models within the project, such as name
, status
, accuracy
, and more.
models_versions
table stores information about all present and past versions of each model.
models
and models_versions
tables, visit our docs on the PROJECT
entity.
files
Database