mindsdb
mindsdb copied to clipboard
Change formatting of examples in the doc
Fixes #
Please describe what changes you made, in as much detail as possible
Change formatting fixing #2929 mindsdb
Sorry its hard to preview this from here, this will make all those keywords as italic right?
Yep
@Artemis6969 The italics font is used for the names that are a placeholder for a real name. Here are some examples.
Example 1: Below statement...
CREATE PREDICTOR mindsdb.[predictor_name]
FROM [integration_name]
(SELECT [column_name, ...] FROM [table_name])
PREDICT [target_column]
...should change into:
CREATE PREDICTOR mindsdb._predictor_name_
FROM _integration_name_
(SELECT _column_name_, _..._ FROM _table_name_)
PREDICT _target_column_;
Example 2: Below statement...
SELECT *
FROM mindsdb.predictors
WHERE name='[predictor_name]';
...should change into:
SELECT *
FROM mindsdb.predictors
WHERE name='_predictor_name_';