How to insert a column in a specific position in oracle without dropping and recreating the table?
Consider this inital table I have created in Oracle
CUSTOMER_ID ACC_NO ACC_BALANCE
------------------------------------
100 200 1000
101 150 4000
102 350 2000
103 450 2500
104 550 2200
Now I want to add another column customer_name as second column(posotion) into the table. i wanted to check the same for hundreds of table and i am using an script to acive this and passingtable_name as dynamic input.
can you somedody pls help mw with dynamic solution