How can I change the Date format column

Hello

How do I change a column to the format of the DATE where that particular column is seen text currently

Can someone suggest me please...

ASY allows you table1 with x varchar2 field and you want to convert it to this day

1 alter table table1 add y.

2 update table1 set y = to_date(x,'dd-Mon-yyyy'); the format in which date you stored hav collar x

3. change the table1 table: remove the x column;

4. change the table1 table rename column y to x;

Alexander gelin
http://nimishgarg.blogspot.com/

Tags: Database

Similar Questions

Maybe you are looking for