Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Need to insert a column into an existing table

RDN82Aug 27 2020 — edited Aug 28 2020

I have a table that contains a column of dates. I want to insert a new column into the table that will give me the month of the dates column.

I know my code to extract the month from the dates column is..

extract (month from dates_column) as month

My question is, how do I insert this into an existing table?

This post has been answered by Frank Kulash on Aug 27 2020
Jump to Answer
Comments
Post Details
Added on Aug 27 2020
19 comments
9,078 views