Answers for "create table from view"

0

create table from view

CREATE TABLE tbl_from_view AS    
  SELECT
    col1,
    col2,
    col3,
    col4,
    col5
  FROM your_view;
Posted by: Guest on March-12-2021

Browse Popular Code Answers by Language