public interface AlterViewStep
ALTER VIEW where the action can be decided.
 
XYZ*Step types directly from client code
 It is usually not recommended to reference any XYZ*Step types
 directly from client code, or assign them to local variables. When writing
 dynamic SQL, creating a statement's components dynamically, and passing them
 to the DSL API statically is usually a better choice. See the manual's
 section about dynamic SQL for details: https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql.
 
 Drawbacks of referencing the XYZ*Step types directly:
 
| Modifier and Type | Method and Description | 
|---|---|
| AlterViewFinalStep | comment(Comment comment)Specify a comment for a table using MySQL's syntax (which MySQL currently
 doesn't support on views). | 
| AlterViewFinalStep | comment(String comment)Specify a comment for a table using MySQL's syntax (which MySQL currently
 doesn't support on views). | 
| AlterViewFinalStep | renameTo(Name newName)Add a  RENAME TOclause to theALTER VIEWstatement. | 
| AlterViewFinalStep | renameTo(String newName)Add a  RENAME TOclause to theALTER VIEWstatement. | 
| AlterViewFinalStep | renameTo(Table<?> newName)Add a  RENAME TOclause to theALTER VIEWstatement. | 
@Support(value={AURORA_POSTGRES,DB2,FIREBIRD,H2,HSQLDB,ORACLE,POSTGRES,SQLSERVER}) AlterViewFinalStep comment(String comment)
@Support(value={AURORA_POSTGRES,DB2,FIREBIRD,H2,HSQLDB,ORACLE,POSTGRES,SQLSERVER}) AlterViewFinalStep comment(Comment comment)
@Support(value={AURORA_POSTGRES,HSQLDB,ORACLE,POSTGRES,SQLSERVER}) AlterViewFinalStep renameTo(Table<?> newName)
RENAME TO clause to the ALTER VIEW
 statement.@Support(value={AURORA_POSTGRES,HSQLDB,ORACLE,POSTGRES,SQLSERVER}) AlterViewFinalStep renameTo(Name newName)
RENAME TO clause to the ALTER VIEW
 statement.@Support(value={AURORA_POSTGRES,HSQLDB,ORACLE,POSTGRES,SQLSERVER}) AlterViewFinalStep renameTo(String newName)
RENAME TO clause to the ALTER VIEW
 statement.Copyright © 2019. All rights reserved.