MySQL Tutorial/View/Alter View

Материал из SQL эксперт
Версия от 09:51, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

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>]