Informix Alter View

The Informix Alter View Tool allows users to alter views by changing the view query using drop and create SQL statements.

Listed below is example SQL generated by the Alter View Tool.

DROP VIEW sample:e_view

create view "Administrator".e_view (fname,lname) as
select x0.fname ,x0.lname from "Administrator".employee x0 ;