diff --git a/docs/en/12-taos-sql/02-database.md b/docs/en/12-taos-sql/02-database.md index c2961d62415cd7d23b031777082801426b221190..0af8c36f669ea1de988ce200ce11037d85674c26 100644 --- a/docs/en/12-taos-sql/02-database.md +++ b/docs/en/12-taos-sql/02-database.md @@ -20,20 +20,20 @@ CREATE DATABASE [IF NOT EXISTS] db_name [KEEP keep] [DAYS days] [UPDATE 1]; 3. The maximum length of database name is 33 bytes. 4. The maximum length of a SQL statement is 65,480 bytes. 5. Below are the parameters that can be used when creating a database - - cache: [Description](/reference/config/#cache) - - blocks: [Description](/reference/config/#blocks) - - days: [Description](/reference/config/#days) - - keep: [Description](/reference/config/#keep) - - minRows: [Description](/reference/config/#minrows) - - maxRows: [Description](/reference/config/#maxrows) - - wal: [Description](/reference/config/#wallevel) - - fsync: [Description](/reference/config/#fsync) - - update: [Description](/reference/config/#update) - - cacheLast: [Description](/reference/config/#cachelast) - - replica: [Description](/reference/config/#replica) - - quorum: [Description](/reference/config/#quorum) - - comp: [Description](/reference/config/#comp) - - precision: [Description](/reference/config/#precision) + - cache: [Description](../../reference/config/#cache) + - blocks: [Description](../../reference/config/#blocks) + - days: [Description](../../reference/config/#days) + - keep: [Description](../../reference/config/#keep) + - minRows: [Description](../../reference/config/#minrows) + - maxRows: [Description](../../reference/config/#maxrows) + - wal: [Description](../../reference/config/#wallevel) + - fsync: [Description](../../reference/config/#fsync) + - update: [Description](../../reference/config/#update) + - cacheLast: [Description](../../reference/config/#cachelast) + - replica: [Description](../../reference/config/#replica) + - quorum: [Description](../../reference/config/#quorum) + - comp: [Description](../../reference/config/#comp) + - precision: [Description](../../reference/config/#precision) 6. Please note that all of the parameters mentioned in this section are configured in configuration file `taos.cfg` on the TDengine server. If not specified in the `create database` statement, the values from taos.cfg are used by default. To override default parameters, they must be specified in the `create database` statement. :::