Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Clarify how the % operator works. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.19 |
Files: | files | file ages | folders |
SHA3-256: |
3cb8f4e5f24bd12c1b7d0b730a64e995 |
User & Date: | drh 2017-07-11 14:00:30.444 |
Context
2017-07-17
| ||
12:25 | Fix a typo in whentouse.html. (Cherrypick from trunk) (check-in: 8cd332487d user: drh tags: branch-3.19) | |
2017-07-13
| ||
19:12 | Merge fixes from the 3.19.0 branch. (check-in: 3a97831e93 user: drh tags: trunk) | |
2017-07-11
| ||
14:00 | Clarify how the % operator works. (check-in: 3cb8f4e5f2 user: drh tags: branch-3.19) | |
2017-07-10
| ||
19:49 | Fix a typo in the dbstat.html document. (check-in: 4160ca5c08 user: drh tags: branch-3.19) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
1846 1847 1848 1849 1850 1851 1852 | <tcl> hd_puts "[Operator =] or [Operator ==]. ^The non-equals operator can be either [Operator !=] or [Operator {<>}]. ^The [Operator ||] operator is \"concatenate\" - it joins together the two strings of its operands. | | | > > | 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 | <tcl> hd_puts "[Operator =] or [Operator ==]. ^The non-equals operator can be either [Operator !=] or [Operator {<>}]. ^The [Operator ||] operator is \"concatenate\" - it joins together the two strings of its operands. ^The operator [Operator %] outputs the integer value of its left operand modulo its right operand. In other words, the operator [Operator %] works in SQLite the same as it does in ANSI-C.</p> <p>^The result of any binary operator is either a numeric value or NULL, except for the [Operator ||] concatenation operator which always evaluates to either NULL or a text value.</p>" hd_fragment {isisnot} {IS operator} {IS NOT operator} |
︙ | ︙ |