I am getting the sql command not properly ended when hiting this line below. I want to insert into table A with data from table B. Both of them have the same columns but the sequence might be different. TIA!
Insert into a (select column_name from user_tab_columns where table_name = 'B')
select * from b
I am using pl/sql developer.