diff --git a/content/docs/specifications/table-dialect.md b/content/docs/specifications/table-dialect.md index f80375f3..a6349a56 100644 --- a/content/docs/specifications/table-dialect.md +++ b/content/docs/specifications/table-dialect.md @@ -545,6 +545,31 @@ With this dialect definition: `SHOULD` output the data from the second sheet. +### Database + +Database formats is a group of formats accessing data from databases like SQLite. + +#### `table` + +A Table Dialect descriptor `MAY` have the `table` property that `MUST` be a string; undefined by default. This property specifies a name of the table in the database. + +For example, the database with the tables below: + +```txt +table1 +table2 +``` + +With this dialect definition: + +```json +{ + "table": "table2" +} +``` + +`SHOULD` output the data from the second table. + ## Example An example of a well-defined Table Dialect descriptor for a CSV format: