Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Typo fix. CAST(...TO...) should be CAST(...AS...). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
64427669a775e9e7ee319012e92955d0 |
User & Date: | drh 2014-01-29 13:52:10.267 |
Context
2014-01-29
| ||
17:10 | Add new elements to the 3.8.3 change log. (check-in: 7ab25ac60e user: drh tags: trunk) | |
13:52 | Typo fix. CAST(...TO...) should be CAST(...AS...). (check-in: 64427669a7 user: drh tags: trunk) | |
2014-01-24
| ||
23:43 | Fix typos in the WITH clause documentation reported on the mailing list. (check-in: 5415be54c0 user: drh tags: trunk) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
1922 1923 1924 1925 1926 1927 1928 | a correlated subquery. ^A correlated subquery is reevaluated each time its result is required. ^An uncorrelated subquery is evaluated only once and the result reused as necessary. <tcl>hd_fragment castexpr {CAST expression} {CAST} {cast} {CAST operator}</tcl> <h3>CAST expressions</h3> | | | 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 | a correlated subquery. ^A correlated subquery is reevaluated each time its result is required. ^An uncorrelated subquery is evaluated only once and the result reused as necessary. <tcl>hd_fragment castexpr {CAST expression} {CAST} {cast} {CAST operator}</tcl> <h3>CAST expressions</h3> <p>A CAST expression of the form "CAST(<expr> AS <type-name>)" is used to convert the value of <expr> to a different [storage class] specified by <type-name>. ^A CAST conversion is similar to the conversion that takes place when a [column affinity] is applied to a value except that with the CAST operator the conversion always takes place even if the conversion lossy and irreversible, whereas column affinity only changes the data type of a value if the change is lossless and reversible. |
︙ | ︙ |