Skip to content
Advertisement

insert values from one column to another in same table – SQL [closed]

I want to insert values into new column from existing column in same table (SQL) . (Both existing column and new column values should be same ). Any Suggestions..

Advertisement

Answer

This should help you: https://www.w3schools.com/sql/sql_update.asp

UPDATE table SET param1=newValue WHERE param2=criterion

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement