I have a column having dates in varchar format, I want to convert it, to date format, which I did through below query:
select to_date(EVENT_DT, 'YYYYMMDD') from demographic;
Now, I want to create a new column and populate the column with the values that I got from above query. I am not able to do it with alter table.
Any solutions?