Does anyone know the Derby equivalent for the following?
CREATE OR REPLACE VIEW myView AS SELECT ...
My internet searching hasn't found anything clear. Wondering if I may have to do something similar to what I had to do for MSSQL:
IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = 'myView')
DROP VIEW [dbo].[myView];
CREATE VIEW [dbo].[myView] AS SELECT ...
In which case I assume I'll have to head down this path.