ALTER VIEW

Sintassi

ALTER
    [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}]
    [DEFINER = { user | CURRENT_USER }]
    [SQL SECURITY { DEFINER | INVOKER }]
    VIEW nome_vista [(elenco_colonne)]
    AS istruzione_select
    [WITH [CASCADED | LOCAL] CHECK OPTION]

Spiegazione

Questa istruzione modifica la definizione di una vista già esistente. La sintassi è simile a quella di CREATE VIEW e l'effetto che si ottiene è lo stesso che si ottiene usando CREATE OR REPLACE VIEW. Si veda [HELP CREATE VIEW]. Questa istruzione richiede i privilegi CREATE VIEW e DROP sulla vista interessata, e i privilegi per tutte le colonne nominate nell'istruzione SELECT. A partire da MySQL 5.1.23, ALTER VIEW è permessa solo al definer e agli utenti che dispongono del privilegio SUPER.

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.