Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed #1020. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
391102d17fef15ef7c84e38a7352ccc2 |
User & Date: | mihailim 2008-06-25 08:36:21.000 |
Context
2008-06-25
| ||
12:48 | Fixed #2051 (check-in: 83e99e89a8 user: mihailim tags: trunk) | |
08:36 | Fixed #1020. (check-in: 391102d17f user: mihailim tags: trunk) | |
08:21 | Fixed typo. (check-in: e45a5a4841 user: mihailim tags: trunk) | |
Changes
Changes to pages/datatype3.in.
︙ | ︙ | |||
360 361 362 363 364 365 366 | Whenever two text values are compared by SQLite, a collation sequence is used to determine the results of the comparison according to the following rules. Sections 3 and 5 of this document describe the circumstances under which such a comparison takes place. </p> <p> | | | | | | 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | Whenever two text values are compared by SQLite, a collation sequence is used to determine the results of the comparison according to the following rules. Sections 3 and 5 of this document describe the circumstances under which such a comparison takes place. </p> <p> For binary comparison operators (=, <, >, <= and >=) if either operand is a column, then the default collation type of the column determines the collation sequence to use for the comparison. If both operands are columns, then the collation type for the left operand determines the collation sequence used. If neither operand is a column, then the BINARY collation sequence is used. For the purposes of this paragraph, a column name preceded by one or more unary "+" operators is considered a column name. </p> <p> The expression "x BETWEEN y and z" is equivalent to "x >= y AND x <= |
︙ | ︙ |
Changes to pages/version3.in.
︙ | ︙ | |||
189 190 191 192 193 194 195 | the byte sequence of the text will not be modified in any way. </p> <h3>User-defined Collating Sequences</h3> <p> A collating sequence is just a defined order for text. When SQLite 3.0 | | | | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | the byte sequence of the text will not be modified in any way. </p> <h3>User-defined Collating Sequences</h3> <p> A collating sequence is just a defined order for text. When SQLite 3.0 sorts (or uses a comparison operator like "<" or ">=") the sort order is first determined by the data type. </p> <ul> <li>NULLs sort first</li> <li>Numeric values sort next in numerical order</li> <li>Text values come after numerics</li> <li>BLOBs sort last</li> |
︙ | ︙ |