How to Create a view of MySQL5

Source: Internet
Author: User

Basic Syntax:
CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]    VIEW view_name [(column_list)]    AS select_statement    [WITH [CASCADED | LOCAL] CHECK OPTION]

This statement creates a new view, or replaces an existing one ifOR REPLACEClause is given.select_statementIsSELECTStatement that provides the definition of the view. The statement can select from base tables or other views.

This statement requiresCREATE VIEWPrivilege for the view, and some privilege for each column selected bySELECTStatement. For columns used elsewhere inSELECTStatement you must haveSELECTPrivilege. IfOR REPLACEClause is present, you must also haveDELETEPrivilege for the view.

A view belongs to a database. By default, a new view is created in the current database. To create the view explicitly in a given database, specify the namedb_name.view_nameWhen you create it.

mysql> CREATE VIEW test.v AS SELECT * FROM t;

Tables and views share the same namespace within a database, so a database cannot contain a table and a view that have the same name.

Views must have unique column names with no duplicates, just like base tables. By default, the names of the columns retrieved bySELECTStatement are used for the view column names. To define explicit names for the view columns, the optionalcolumn_listClause can be given as a list of comma-separated identifiers. The number of names incolumn_listMust be the same as the number of columns retrieved bySELECTStatement.

Columns retrieved bySELECTStatement can be simple references to table columns. They can also be expressions that use functions, constant values, operators, and so forth.

Unqualified table or view names inSELECTStatement are interpreted with respect to the default database. A view can refer to tables or views in other databases by qualifying the table or view name with the proper database name.

A view can be created from your kindsSELECTStatements. It can refer to base tables or other views. It can use joins,UNION, And subqueries.SELECTNeed not even refer to any tables. The following example defines a view that selects two columns from another table, as well as an expression calculated from those columns:

mysql> CREATE TABLE t (qty INT, price INT);mysql> INSERT INTO t VALUES(3, 50);mysql> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;mysql> SELECT * FROM v;+------+-------+-------+| qty  | price | value |+------+-------+-------+|    3 |    50 |   150 |+------+-------+-------+

A view definition is subject to the following restrictions:

  • TheSELECTStatement cannot contain a subquery inFROMClause.

  • TheSELECTStatement cannot refer to system or user variables.

  • TheSELECTStatement cannot refer to prepared statement parameters.

  • Within a stored routine, the definition cannot refer to routine parameters or local variables.

  • Any table or view referred to in the definition must exist. however, after a view has been created, it is possible to drop a table or view that the definition refers. to check a view definition for problems of this kind, useCHECK TABLEStatement.

  • The definition cannot refer toTEMPORARYTable, and you cannot createTEMPORARYView.

  • The tables named in the view definition must already exist.

  • You cannot associate a trigger with a view.

ORDER BYIs allowed in a view definition, but it is ignored if you select from a view using a statement that has its ownORDER BY.

For other options or clses in the definition, they are added to the options or clses of the statement that references the view, but the effect is undefined. For example, if a view definition between desLIMITClause, and you select from the view using a statement that has its ownLIMITClause, it is undefined which limit applies. This same principle applies to options suchALL,DISTINCT, OrSQL_SMALL_RESULTThat followSELECTKeyword, and to clses suchINTO,FOR UPDATE,LOCK IN SHARE MODE, AndPROCEDURE.

If you create a view and then change the query processing environment by changing system variables, that may affect the results you get from the view:

mysql> CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));Query OK, 0 rows affected (0.00 sec)mysql> SET NAMES 'latin1';Query OK, 0 rows affected (0.00 sec)mysql> SELECT * FROM v;+-------------------+---------------------+| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |+-------------------+---------------------+| latin1            | latin1_swedish_ci   |+-------------------+---------------------+1 row in set (0.00 sec)mysql> SET NAMES 'utf8';Query OK, 0 rows affected (0.00 sec)mysql> SELECT * FROM v;+-------------------+---------------------+| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |+-------------------+---------------------+| utf8              | utf8_general_ci     |+-------------------+---------------------+1 row in set (0.00 sec)

The optionalALGORITHMClause is a MySQL extension to standard SQL.ALGORITHMTakes three values:MERGE,TEMPTABLE, OrUNDEFINED. The default algorithm isUNDEFINEDIf noALGORITHMClause is present. The algorithm affects how MySQL processes the view.

ForMERGE, The text of a statement that refers to the view and the view definition are merged such that parts of the view definition replace corresponding parts of the statement.

ForTEMPTABLE, The results from the view are retrieved into a temporary table, which then is used to execute the statement.

ForUNDEFINED, MySQL chooses which algorithm to use. It prefersMERGEOverTEMPTABLEIf possible, becauseMERGEIs usually more efficient and because a view cannot be updatable if a temporary table is used.

A reason to chooseTEMPTABLEExplicitly is that locks can be released on underlying tables after the temporary table has been created and before it is used to finish processing the statement. This might result in quicker lock releaseMERGEAlgorithm so that other clients that use the view are not blocked as long.

A view algorithm can beUNDEFINEDThree ways:

  • NoALGORITHMClause is present inCREATE VIEWStatement.

  • TheCREATE VIEWStatement has an explicitALGORITHM = UNDEFINEDClause.

  • ALGORITHM = MERGEIs specified for a view that can be processed only with a temporary table. In this case, MySQL generates a warning and sets the algorithmUNDEFINED.

As mentioned earlier,MERGEIs handled by merging corresponding parts of a view definition into the statement that refers to the view. The following examples briefly returns strate howMERGEAlgorithm works. The examples assume that there is a viewv_mergeThat has this definition:

CREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) ASSELECT c1, c2 FROM t WHERE c3 > 100;

Example 1: Suppose that we issue this statement:

SELECT * FROM v_merge;

MySQL handles the statement as follows:

  • v_mergeBecomest

  • *Becomesvc1, vc2, Which correspondsc1, c2

  • The viewWHEREClause is added

The resulting statement to be executed becomes:

SELECT c1, c2 FROM t WHERE c3 > 100;

Example 2: Suppose that we issue this statement:

SELECT * FROM v_merge WHERE vc1 < 100;

This statement is handled similarly to the previous one, doesn't thatvc1 < 100Becomesc1 < 100And the viewWHEREClause is added to the statementWHEREClause usingANDConnective (and parentheses are added to make sure the parts of the clause are executed with correct precedence). The resulting statement to be executed becomes:

SELECT c1, c2 FROM t WHERE (c3 > 100) AND (c1 < 100);

When tively, the statement to be executed hasWHEREClause of this form:

WHERE (select WHERE) AND (view WHERE)

TheMERGEAlgorithm requires a one-to relationship between the rows in the view and the rows in the underlying table. if this relationship does not hold, a temporary table must be used instead. lack of a one-to-one relationship occurs if the view contains any of a number of constructs:

  • Aggregate functions (SUM(),MIN(),MAX(),COUNT(), And so forth)

  • DISTINCT

  • GROUP BY

  • HAVING

  • UNIONOrUNION ALL

  • Refers only to literal values (in this case, there is no underlying table)

Some views are updatable. That is, you can use them in statements suchUPDATE,DELETE, OrINSERTTo update the contents of the underlying table. for a view to be updatable, there must be a one-to relationship between the rows in the view and the rows in the underlying table. there are also certain other constructs that make a view non-updatable. to be more specific, a view is not updatable if it contains any of the following:

  • Aggregate functions (SUM(),MIN(),MAX(),COUNT(), And so forth)

  • DISTINCT

  • GROUP BY

  • HAVING

  • UNIONOrUNION ALL

  • Subquery in the select list

  • Join

  • Non-updatable view inFROMClause

  • A subquery inWHEREClause that refers to a table inFROMClause

  • Refers only to literal values (in this case, there is no underlying table to update)

  • ALGORITHM = TEMPTABLE(Use of a temporary table always makes a view non-updatable)

With respect to insertability (being updatableINSERTStatements), an updatable view is insertable if it also satisfies these additional requirements for the view columns:

  • There must be no duplicate view column names.

  • The view must contain all columns in the base table that do not have a default value.

  • The view columns must be simple column references and not derived columns. A derived column is one that is not a simple column reference but is derived from an expression. These are examples of derived columns:

    3.14159col1 + 3UPPER(col2)col3 / col4(subquery)

A view that has a mix of simple column references and derived columns is not insertable, but it can be updatable if you update only those columns that are not derived. Consider this view:

CREATE VIEW v AS SELECT col1, 1 AS col2 FROM t;

This view is not insertable becausecol2Is derived from an expression. But it is updatable if the update does not try to updatecol2. This update is allowable:

UPDATE v SET col1 = 0;

This update is not allowable because it attempts to update a derived column:

UPDATE v SET col2 = 0;

It is sometimes possible for a multiple-table view to be updatable, assuming that it can be processed withMERGEAlgorithm. For this to work, the view must use an inner join (not an outer join orUNION). Also, only a single table in the view definition can be updated, soSETClause must name only columns from one of the tables in the view. Views that useUNION ALLAre disallowed even though they might be theoretically updatable, because the implementation uses temporary tables to process them.

For a multiple-table updatable view,INSERTCan work if it inserts into a single table.DELETEIs not supported.

TheWITH CHECK OPTIONClause can be given for an updatable view to prevent inserts or updates to rows tables t those for whichWHEREClause inselect_statementIs true.

InWITH CHECK OPTIONClause for an updatable view,LOCALAndCASCADEDKeywords determine the scope of check testing when the view is defined in terms of another view.LOCALKeyword restrictsCHECK OPTIONOnly to the view being defined.CASCADEDCauses the checks for underlying views to be evaluated as well. When neither keyword is given, the default isCASCADED. Consider the definitions for the following table and set of views:

mysql> CREATE TABLE t1 (a INT);mysql> CREATE VIEW v1 AS SELECT * FROM t1 WHERE a < 2    -> WITH CHECK OPTION;mysql> CREATE VIEW v2 AS SELECT * FROM v1 WHERE a > 0    -> WITH LOCAL CHECK OPTION;mysql> CREATE VIEW v3 AS SELECT * FROM v1 WHERE a > 0    -> WITH CASCADED CHECK OPTION;

Herev2Andv3Views are defined in terms of another view,v1.v2HasLOCALCheck option, so inserts are tested only againstv2Check.v3HasCASCADEDCheck option, so inserts are tested not only against its own check, but against those of underlying views. The following statements contains strate these differences:

ql> INSERT INTO v2 VALUES (2);Query OK, 1 row affected (0.00 sec)mysql> INSERT INTO v3 VALUES (2);ERROR 1369 (HY000): CHECK OPTION failed 'test.v3'

The updatability of views may be affected by the value ofupdatable_views_with_limitSystem variable. (end)


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.