Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improved wording of a statement in the CREATE VIEW documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
629e137c8d0e1f702e5bf79663ce786b |
User & Date: | drh 2015-03-27 10:58:03.722 |
Context
2015-03-31
| ||
14:31 | Clarify the wording of the SQLITE_SECURE_DELETE documentation. (check-in: ce7c9f89a7 user: drh tags: trunk) | |
2015-03-27
| ||
10:58 | Improved wording of a statement in the CREATE VIEW documentation. (check-in: 629e137c8d user: drh tags: trunk) | |
2015-03-24
| ||
21:36 | Omit the SQLITE_STDCALL and SQLITE_CDECL macros from the API documentation. (check-in: c0f3adb87d user: drh tags: trunk) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
1369 1370 1371 1372 1373 1374 1375 | [SELECT] statement. ^Once the view is created, it can be used in the FROM clause of another [SELECT] in place of a table name. </p> <p>^If the "TEMP" or "TEMPORARY" keyword occurs in between "CREATE" and "VIEW" then the view that is created is only visible to the | | | | 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 | [SELECT] statement. ^Once the view is created, it can be used in the FROM clause of another [SELECT] in place of a table name. </p> <p>^If the "TEMP" or "TEMPORARY" keyword occurs in between "CREATE" and "VIEW" then the view that is created is only visible to the [database connection] that created it and is automatically deleted when the database connection is closed.</p> <p> ^If a <database-name> is specified, then the view is created in the named database. ^It is an error to specify both a <database-name> and the TEMP keyword on a VIEW, unless the <database-name> is "temp". ^If no database name is specified, and the TEMP keyword is not present, the VIEW is created in the main database.</p> |
︙ | ︙ |