MySQL Tutorial/View/Alter View — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 09:51, 26 мая 2010
ALTER VIEW statement
The ALTER VIEW statement is the same as the CREATE statement, except for the omission of the OR REPLACE option.
The ALTER VIEW statement does the same thing as CREATE OR REPLACE.
The full ALTER statement looks like this:
ALTER [<algorithm attributes>] VIEW [<database>.]< name> [(<columns>)] AS
<SELECT statement> [<check options>]