oracle sql create or replace view

Solutions on MaxInterview for oracle sql create or replace view by the best coders in the world

showing results for - "oracle sql create or replace view"
Damián
08 Oct 2018
1CREATE OR REPLACE VIEW view_name AS
2SELECT colA, colB 
3FROM my_table
4WHERE colC = 'OK';