Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in the CREATE TABLE documentation. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: | aff4908d942f50bb7b3b60ffde269e5b |
User & Date: | drh 2018-09-03 10:57:10 |
Context
2018-09-05
| ||
09:58 | Fixes to the geopoly documentation. check-in: ab4f7977fb user: drh tags: trunk | |
2018-09-03
| ||
10:57 | Fix a typo in the CREATE TABLE documentation. check-in: aff4908d94 user: drh tags: trunk | |
10:46 | Fix a typo in the testing.html document. check-in: fb87225a7a user: drh tags: trunk | |
Changes
Changes to pages/lang.in.
972 972 value is explicitly provided by the user when doing an [INSERT]. ^If there 973 973 is no explicit DEFAULT clause attached to a column definition, then the 974 974 default value of the column is NULL. ^(An explicit DEFAULT clause may specify 975 975 that the default value is NULL, a string constant, a blob constant, a 976 976 signed-number, or any constant expression enclosed in parentheses. A 977 977 default value may also be one of the special case-independent keywords 978 978 CURRENT_TIME, CURRENT_DATE or CURRENT_TIMESTAMP.)^ ^For the purposes of the 979 -DEFAULT clause, an expression is considered constant if it does 979 +DEFAULT clause, an expression is considered constant if it 980 980 contains no sub-queries, column or table references, [bound parameters], 981 981 or string literals enclosed in double-quotes instead of single-quotes. 982 982 983 983 <p>^(Each time a row is inserted into the table by an INSERT statement that 984 984 does not provide explicit values for all table columns the values stored in 985 985 the new row are determined by their default values)^, as follows: 986 986