DROP VIEW
(lang_dropview.html)
The DROP VIEW statement removes a view created by the CREATE VIEW
statement. The view definition is removed from the database schema, but
no actual data in the underlying base tables is modified.
The view to drop is identified by ...
|
CREATE VIEW
(lang_createview.html)
... You cannot DELETE, INSERT, or UPDATE a view. Views are read-only
in SQLite. However, in many cases you can use an
INSTEAD OF trigger on the view to accomplish
the same thing. Views are removed
with the DROP VIEW ...
|
The Schema Table
(schematab.html)
3. Interpretation Of The Schema Table
... tbl_name
The sqlite_schema.tbl_name column holds the name of a table or view
that the object is associated with. For a table or view, the
tbl_name column is a copy of the name column. For an index, the tbl_name
is ...
|
SQL Features That SQLite Does Not Implement
(omitted.html)
... Writing to VIEWs
VIEWs in SQLite are read-only. You may not execute a DELETE, INSERT, or
UPDATE statement on a view. But you can create a trigger
that fires on an attempt to DELETE, INSERT, or UPDATE a ...
|
ALTER TABLE
(lang_altertable.html)
... If any views refer to table X in a way that is affected by the
schema change, then drop those views using DROP VIEW and recreate them
with whatever changes are necessary to accommodate the schema change
using CREATE VIEW ...
|
Database Object Name Resolution
(lang_naming.html)
In SQLite, a database object (a table, index, trigger or view) is identified
by the name of the object and the name of the database that it resides in.
Database objects may reside in the main database, the temp database ...
|
List of SQLite Syntax Diagrams
(syntax.html)
... table-stmt
create-trigger-stmt
create-view-stmt
create-virtual-table-stmt
cte-table-name
delete-stmt
delete-stmt-limited
detach-stmt
drop-index-stmt
drop-table-stmt
drop-trigger-stmt
drop-view-stmt
expr
factored-select-stmt
filter-clause ...
|
Query Language Understood by SQLite
(lang.html)
... aggregate functions
ALTER TABLE
ANALYZE
ATTACH DATABASE
BEGIN TRANSACTION
comment
COMMIT TRANSACTION
core functions
CREATE INDEX
CREATE TABLE
CREATE TRIGGER
CREATE VIEW
CREATE VIRTUAL TABLE
date and time functions
DELETE
DETACH DATABASE
DROP INDEX
DROP TABLE
DROP TRIGGER
DROP VIEW ...
|
Savepoints
(lang_savepoint.html)
... Some people view RELEASE as the equivalent of COMMIT for a SAVEPOINT.
This is an acceptable point of view as long as one remembers that the
changes committed by an inner transaction might later be undone by a
rollback in ...
|
CREATE TRIGGER
(lang_createtrigger.html)
... INSTEAD OF triggers work only on views.
If an INSTEAD OF INSERT trigger exists on a view, then it is
possible to execute an INSERT statement against that view. No actual
insert occurs. Instead, the statements contained within the trigger ...
|
Page generated by FTS5 in about 121.89 ms.