May.10
Create table and insert from another table
Create new table and insert data from old table specified.
———————————————————–
create table tbl_new_bk as select * from tbl_old; Insert into newly created table.
insert into tbl_olg * from tbl_grid_point_desc_bk;