찾다
데이터 베이스MySQL 튜토리얼如何创建MySQL5的视图

如何创建MySQL5的视图

Jun 07, 2016 pm 04:04 PM
creater만들다기초적인어떻게보다문법

基本语法: 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 if the

<STRONG>基本语法:</STRONG>
CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]
    VIEW <EM class=replaceable><CODE>view_name</CODE></EM> [(<EM class=replaceable><CODE>column_list</CODE></EM>)]
    AS <EM class=replaceable><CODE>select_statement</CODE></EM>
    [WITH [CASCADED | LOCAL] CHECK OPTION]

This statement creates a new view, or replaces an existing one if the <font face="新宋体">OR REPLACE</font> clause is given. The <font face="新宋体">select_statement</font> is a <font face="新宋体">SELECT</font> statement that provides the definition of the view. The statement can select from base tables or other views.

This statement requires the <font face="新宋体">CREATE VIEW</font> privilege for the view, and some privilege for each column selected by the <font face="新宋体">SELECT</font> statement. For columns used elsewhere in the <font face="新宋体">SELECT</font> statement you must have the <font face="新宋体">SELECT</font> privilege. If the <font face="新宋体">OR REPLACE</font> clause is present, you must also have the <font face="新宋体">DELETE</font> privilege 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 name as <font face="新宋体">db_name.view_name</font> when you create it.

mysql> <STRONG class=userinput><CODE>CREATE VIEW test.v AS SELECT * FROM t;</CODE></STRONG>

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 by the <font face="新宋体">SELECT</font> statement are used for the view column names. To define explicit names for the view columns, the optional <font face="新宋体">column_list</font> clause can be given as a list of comma-separated identifiers. The number of names in <font face="新宋体">column_list</font> must be the same as the number of columns retrieved by the <font face="新宋体">SELECT</font> statement.

Columns retrieved by the <font face="新宋体">SELECT</font> statement 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 in the <font face="新宋体">SELECT</font> statement 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 many kinds of <font face="新宋体">SELECT</font> statements. It can refer to base tables or other views. It can use joins, <font face="新宋体">UNION</font>, and subqueries. The <font face="新宋体">SELECT</font> need 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> <STRONG class=userinput><CODE>CREATE TABLE t (qty INT, price INT);</CODE></STRONG>
mysql> <STRONG class=userinput><CODE>INSERT INTO t VALUES(3, 50);</CODE></STRONG>
mysql> <STRONG class=userinput><CODE>CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t;</CODE></STRONG>
mysql> <STRONG class=userinput><CODE>SELECT * FROM v;</CODE></STRONG>
+------+-------+-------+
| qty  | price | value |
+------+-------+-------+
|    3 |    50 |   150 |
+------+-------+-------+

A view definition is subject to the following restrictions:

  • The <font face="新宋体">SELECT</font> statement cannot contain a subquery in the <font face="新宋体">FROM</font> clause.

  • The <font face="新宋体">SELECT</font> statement cannot refer to system or user variables.

  • The <font face="新宋体">SELECT</font> statement 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. To check a view definition for problems of this kind, use the <font face="新宋体">CHECK TABLE</font> statement.

  • The definition cannot refer to a <font face="新宋体">TEMPORARY</font> table, and you cannot create a <font face="新宋体">TEMPORARY</font> view.

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

  • You cannot associate a trigger with a view.

<font face="新宋体">ORDER BY</font> is allowed in a view definition, but it is ignored if you select from a view using a statement that has its own <font face="新宋体">ORDER BY</font>.

For other options or clauses in the definition, they are added to the options or clauses of the statement that references the view, but the effect is undefined. For example, if a view definition includes a <font face="新宋体">LIMIT</font> clause, and you select from the view using a statement that has its own <font face="新宋体">LIMIT</font> clause, it is undefined which limit applies. This same principle applies to options such as <font face="新宋体">ALL</font>, <font face="新宋体">DISTINCT</font>, or <font face="新宋体">SQL_SMALL_RESULT</font> that follow the <font face="新宋体">SELECT</font> keyword, and to clauses such as <font face="新宋体">INTO</font>, <font face="新宋体">FOR UPDATE</font>, <font face="新宋体">LOCK IN SHARE MODE</font>, and <font face="新宋体">PROCEDURE</font>.

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> <STRONG class=userinput><CODE>CREATE VIEW v AS SELECT CHARSET(CHAR(65)), COLLATION(CHAR(65));</CODE></STRONG>
Query OK, 0 rows affected (0.00 sec)

mysql> <STRONG class=userinput><CODE>SET NAMES 'latin1';</CODE></STRONG>
Query OK, 0 rows affected (0.00 sec)

mysql> <STRONG class=userinput><CODE>SELECT * FROM v;</CODE></STRONG>
+-------------------+---------------------+
| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |
+-------------------+---------------------+
| latin1            | latin1_swedish_ci   |
+-------------------+---------------------+
1 row in set (0.00 sec)

mysql> <STRONG class=userinput><CODE>SET NAMES 'utf8';</CODE></STRONG>
Query OK, 0 rows affected (0.00 sec)

mysql> <STRONG class=userinput><CODE>SELECT * FROM v;</CODE></STRONG>
+-------------------+---------------------+
| CHARSET(CHAR(65)) | COLLATION(CHAR(65)) |
+-------------------+---------------------+
| utf8              | utf8_general_ci     |
+-------------------+---------------------+
1 row in set (0.00 sec)

The optional <font face="新宋体">ALGORITHM</font> clause is a MySQL extension to standard SQL. <font face="新宋体">ALGORITHM</font> takes three values: <font face="新宋体">MERGE</font>, <font face="新宋体">TEMPTABLE</font>, or <font face="新宋体">UNDEFINED</font>. The default algorithm is <font face="新宋体">UNDEFINED</font> if no <font face="新宋体">ALGORITHM</font> clause is present. The algorithm affects how MySQL processes the view.

For <font face="新宋体">MERGE</font>, 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.

For <font face="新宋体">TEMPTABLE</font>, the results from the view are retrieved into a temporary table, which then is used to execute the statement.

For <font face="新宋体">UNDEFINED</font>, MySQL chooses which algorithm to use. It prefers <font face="新宋体">MERGE</font> over <font face="新宋体">TEMPTABLE</font> if possible, because <font face="新宋体">MERGE</font> is usually more efficient and because a view cannot be updatable if a temporary table is used.

A reason to choose <font face="新宋体">TEMPTABLE</font> explicitly 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 release than the <font face="新宋体">MERGE</font> algorithm so that other clients that use the view are not blocked as long.

A view algorithm can be <font face="新宋体">UNDEFINED</font> three ways:

  • No <font face="新宋体">ALGORITHM</font> clause is present in the <font face="新宋体">CREATE VIEW</font> statement.

  • The <font face="新宋体">CREATE VIEW</font> statement has an explicit <font face="新宋体">ALGORITHM = UNDEFINED</font> clause.

  • <font face="新宋体">ALGORITHM = MERGE</font> is specified for a view that can be processed only with a temporary table. In this case, MySQL generates a warning and sets the algorithm to <font face="新宋体">UNDEFINED</font>.

As mentioned earlier, <font face="新宋体">MERGE</font> is handled by merging corresponding parts of a view definition into the statement that refers to the view. The following examples briefly illustrate how the <font face="新宋体">MERGE</font> algorithm works. The examples assume that there is a view <font face="新宋体">v_merge</font> that has this definition:

CREATE ALGORITHM = MERGE VIEW v_merge (vc1, vc2) AS
SELECT 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:

  • <font face="新宋体">v_merge</font> becomes <font face="新宋体">t</font>

  • <font face="新宋体">*</font> becomes <font face="新宋体">vc1, vc2</font>, which corresponds to <font face="新宋体">c1, c2</font>

  • The view <font face="新宋体">WHERE</font> clause 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, except that <font face="新宋体">vc1 </font> becomes <font face="新宋体">c1 </font> and the view <font face="新宋体">WHERE</font> clause is added to the statement <font face="新宋体">WHERE</font> clause using an <font face="新宋体">AND</font> connective (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);

Effectively, the statement to be executed has a <font face="新宋体">WHERE</font> clause of this form:

WHERE (select WHERE) AND (view WHERE)

The <font face="新宋体">MERGE</font> algorithm 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 (<font face="新宋体">SUM()</font>, <font face="新宋体">MIN()</font>, <font face="新宋体">MAX()</font>, <font face="新宋体">COUNT()</font>, and so forth)

  • <font face="新宋体">DISTINCT</font>

  • <font face="新宋体">GROUP BY</font>

  • <font face="新宋体">HAVING</font>

  • <font face="新宋体">UNION</font> or <font face="新宋体">UNION ALL</font>

  • 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 such as <font face="新宋体">UPDATE</font>, <font face="新宋体">DELETE</font>, or <font face="新宋体">INSERT</font> to 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 (<font face="新宋体">SUM()</font>, <font face="新宋体">MIN()</font>, <font face="新宋体">MAX()</font>, <font face="新宋体">COUNT()</font>, and so forth)

  • <font face="新宋体">DISTINCT</font>

  • <font face="新宋体">GROUP BY</font>

  • <font face="新宋体">HAVING</font>

  • <font face="新宋体">UNION</font> or <font face="新宋体">UNION ALL</font>

  • Subquery in the select list

  • Join

  • Non-updatable view in the <font face="新宋体">FROM</font> clause

  • A subquery in the <font face="新宋体">WHERE</font> clause that refers to a table in the <font face="新宋体">FROM</font> clause

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

  • <font face="新宋体">ALGORITHM = TEMPTABLE</font> (use of a temporary table always makes a view non-updatable)

With respect to insertability (being updatable with <font face="新宋体">INSERT</font> statements), 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.14159
    col1 + 3
    UPPER(col2)
    col3 / col4
    (<EM class=replaceable><CODE>subquery</CODE></EM>)
    

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 because <font face="新宋体">col2</font> is derived from an expression. But it is updatable if the update does not try to update <font face="新宋体">col2</font>. 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 with the <font face="新宋体">MERGE</font> algorithm. For this to work, the view must use an inner join (not an outer join or a <font face="新宋体">UNION</font>). Also, only a single table in the view definition can be updated, so the <font face="新宋体">SET</font> clause must name only columns from one of the tables in the view. Views that use <font face="新宋体">UNION ALL</font> are disallowed even though they might be theoretically updatable, because the implementation uses temporary tables to process them.

For a multiple-table updatable view, <font face="新宋体">INSERT</font> can work if it inserts into a single table. <font face="新宋体">DELETE</font> is not supported.

The <font face="新宋体">WITH CHECK OPTION</font> clause can be given for an updatable view to prevent inserts or updates to rows except those for which the <font face="新宋体">WHERE</font> clause in the <font face="新宋体">select_statement</font> is true.

In a <font face="新宋体">WITH CHECK OPTION</font> clause for an updatable view, the <font face="新宋体">LOCAL</font> and <font face="新宋体">CASCADED</font> keywords determine the scope of check testing when the view is defined in terms of another view. <font face="新宋体">LOCAL</font> keyword restricts the <font face="新宋体">CHECK OPTION</font> only to the view being defined. <font face="新宋体">CASCADED</font> causes the checks for underlying views to be evaluated as well. When neither keyword is given, the default is <font face="新宋体">CASCADED</font>. Consider the definitions for the following table and set of views:

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

Here the <font face="新宋体">v2</font> and <font face="新宋体">v3</font> views are defined in terms of another view, <font face="新宋体">v1</font>. <font face="新宋体">v2</font> has a <font face="新宋体">LOCAL</font> check option, so inserts are tested only against the <font face="新宋体">v2</font> check. <font face="新宋体">v3</font> has a <font face="新宋体">CASCADED</font> check option, so inserts are tested not only against its own check, but against those of underlying views. The following statements illustrate these differences:

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

The updatability of views may be affected by the value of the <font face="新宋体">updatable_views_with_limit</font> system variable. (完)


성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
MySQL은 PostgreSQL과 어떻게 다릅니 까?MySQL은 PostgreSQL과 어떻게 다릅니 까?Apr 29, 2025 am 12:23 AM

mysqlisbetterforspeedandsimplicity, 적절한 위장; postgresqlexcelsincmoMplexDatascenarioswithrobustFeat.MySqlisIdeAlforQuickProjectSandread-Heavytasks, whilepostgresqlisprefferredforapticationstrictaintetaintegritytetegritytetetaintetaintetaintegritytetaintegritytetaintegritytetainte

MySQL은 데이터 복제를 어떻게 처리합니까?MySQL은 데이터 복제를 어떻게 처리합니까?Apr 28, 2025 am 12:25 AM

MySQL은 비동기식, 반 동시성 및 그룹 복제의 세 가지 모드를 통해 데이터 복제를 처리합니다. 1) 비동기 복제 성능은 높지만 데이터가 손실 될 수 있습니다. 2) 반 동기화 복제는 데이터 보안을 향상 시키지만 대기 시간을 증가시킵니다. 3) 그룹 복제는 고 가용성 요구 사항에 적합한 다중 마스터 복제 및 장애 조치를 지원합니다.

설명 명세서를 사용하여 쿼리 성능을 분석 할 수있는 방법은 무엇입니까?설명 명세서를 사용하여 쿼리 성능을 분석 할 수있는 방법은 무엇입니까?Apr 28, 2025 am 12:24 AM

설명 설명은 SQL 쿼리 성능을 분석하고 개선하는 데 사용될 수 있습니다. 1. 쿼리 계획을 보려면 설명 명세서를 실행하십시오. 2. 출력 결과를 분석하고 액세스 유형, 인덱스 사용량 및 조인 순서에주의를 기울이십시오. 3. 분석 결과를 기반으로 인덱스 생성 또는 조정, 조인 작업을 최적화하며 전체 테이블 스캔을 피하여 쿼리 효율성을 향상시킵니다.

MySQL 데이터베이스를 어떻게 백업하고 복원합니까?MySQL 데이터베이스를 어떻게 백업하고 복원합니까?Apr 28, 2025 am 12:23 AM

논리 백업에 mysqldump를 사용하고 핫 백업을 위해 mysqlenterprisebackup을 사용하는 것은 mySQL 데이터베이스를 백업하는 효과적인 방법입니다. 1. MySQLDUMP를 사용하여 데이터베이스를 백업합니다 : MySQLDUMP-UROOT-PMYDATABASE> MYDATABASE_BACKUP.SQL. 2. Hot Backup : MySQLBackup- 사용자 = root-password = password-- backup-dir =/path/to/backupbackup에 mysqlenterprisebackup을 사용하십시오. 회복 할 때 해당 수명을 사용하십시오

MySQL에서 느린 쿼리의 일반적인 원인은 무엇입니까?MySQL에서 느린 쿼리의 일반적인 원인은 무엇입니까?Apr 28, 2025 am 12:18 AM

느린 MySQL 쿼리의 주된 이유는 인덱스의 누락 또는 부적절한 사용, 쿼리 복잡성, 과도한 데이터 볼륨 및 불충분 한 하드웨어 리소스가 포함됩니다. 최적화 제안에는 다음이 포함됩니다. 1. 적절한 인덱스 생성; 2. 쿼리 문을 최적화합니다. 3. 테이블 파티셔닝 기술 사용; 4. 적절하게 하드웨어를 업그레이드합니다.

MySQL의 견해는 무엇입니까?MySQL의 견해는 무엇입니까?Apr 28, 2025 am 12:04 AM

MySQL View는 SQL 쿼리 결과를 기반으로 한 가상 테이블이며 데이터를 저장하지 않습니다. 1) 뷰는 복잡한 쿼리를 단순화하고 2) 데이터 보안을 향상시키고 3) 데이터 일관성을 유지합니다. 뷰는 테이블처럼 사용할 수있는 데이터베이스에 저장된 쿼리이지만 데이터는 동적으로 생성됩니다.

MySQL과 다른 SQL 방언의 구문의 차이점은 무엇입니까?MySQL과 다른 SQL 방언의 구문의 차이점은 무엇입니까?Apr 27, 2025 am 12:26 AM

mysqldiffersfromothersqldialectsinsyntaxforlimit, 자동 점유, 문자열 comparison, 하위 쿼리 및 퍼포먼스 앤 알리 분석 .1) mysqluse Slimit, whilesqlSerVerusestOpandoracleSrownum.2) MySql'Sauto_incrementContrastSwithPostgresql'serialandoracle '

MySQL 파티셔닝이란 무엇입니까?MySQL 파티셔닝이란 무엇입니까?Apr 27, 2025 am 12:23 AM

MySQL 파티셔닝은 성능을 향상시키고 유지 보수를 단순화합니다. 1) 큰 테이블을 특정 기준 (예 : 날짜 범위)으로 작은 조각으로 나누고, 2) 데이터를 독립적 인 파일로 물리적으로 나눌 수 있습니다.

See all articles

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

Video Face Swap

Video Face Swap

완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

뜨거운 도구

에디트플러스 중국어 크랙 버전

에디트플러스 중국어 크랙 버전

작은 크기, 구문 강조, 코드 프롬프트 기능을 지원하지 않음

SublimeText3 영어 버전

SublimeText3 영어 버전

권장 사항: Win 버전, 코드 프롬프트 지원!

Dreamweaver Mac版

Dreamweaver Mac版

시각적 웹 개발 도구

WebStorm Mac 버전

WebStorm Mac 버전

유용한 JavaScript 개발 도구

SecList

SecList

SecLists는 최고의 보안 테스터의 동반자입니다. 보안 평가 시 자주 사용되는 다양한 유형의 목록을 한 곳에 모아 놓은 것입니다. SecLists는 보안 테스터에게 필요할 수 있는 모든 목록을 편리하게 제공하여 보안 테스트를 더욱 효율적이고 생산적으로 만드는 데 도움이 됩니다. 목록 유형에는 사용자 이름, 비밀번호, URL, 퍼징 페이로드, 민감한 데이터 패턴, 웹 셸 등이 포함됩니다. 테스터는 이 저장소를 새로운 테스트 시스템으로 간단히 가져올 수 있으며 필요한 모든 유형의 목록에 액세스할 수 있습니다.