Home › Forums › MYSQL › Create new column with Existing value on other column in MySQL This topic has 1 reply, 2 voices, and was last updated 1 month, 2 weeks ago by avneesh. Viewing 1 reply thread Author Posts October 3, 2024 at 10:42 am #112 aviParticipant I have start_date(varchar) column and i want to add new column duplicate_date(date) with values of start_date column October 3, 2024 at 10:43 am #113 avneeshParticipant Step 1: Add new Column ALTER TABLE long_holiday ADD (duplicate_date DATE); Step 2: Update new Column with existing value UPDATE long_holiday SET duplicate_date = STR_TO_DATE(start_date , '%d-%m-%Y'); Author Posts Viewing 1 reply thread You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In