Fix column descriptors links

This commit is contained in:
Sean Corfield 2021-04-10 00:17:42 -07:00
parent 7a83bc13fe
commit f231151243

View file

@ -19,7 +19,7 @@ HoneySQL supports the following DDL clauses as a data DSL.
Several of these include column specifications and HoneySQL Several of these include column specifications and HoneySQL
provides some special syntax (functions) to support that. provides some special syntax (functions) to support that.
See [Clause Descriptors in Special Syntax](special-syntax.md#clause-descriptors) for more details. See [Column Descriptors in Special Syntax](special-syntax.md#column-descriptors) for more details.
## alter-table, add-column, drop-column, modify-column, rename-column ## alter-table, add-column, drop-column, modify-column, rename-column
@ -124,7 +124,7 @@ the column name from the SQL keywords).
Various function-like expressions can be specified, as shown Various function-like expressions can be specified, as shown
in the example above, that allow things like `CHECK` for a in the example above, that allow things like `CHECK` for a
constraint, `FOREIGN KEY` (with a column name), `REFERENCES` constraint, `FOREIGN KEY` (with a column name), `REFERENCES`
(with a pair of column names). See [Clause Descriptors in Special Syntax](special-syntax.md#clause-descriptors) for more details. (with a pair of column names). See [Column Descriptors in Special Syntax](special-syntax.md#column-descriptors) for more details.
## create-table-as ## create-table-as