Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi
I have a table assume Users and i need to add a column and insert a default value.

the default value is in the same table(Users)

assume Users table has ID, Name, Password

Now I need to insert a column as Confirm Password which data should be same as Password value.

How can I alter the table and insert the value to that column.

Can anyone help me

Thanks,

Harish Reddy
Posted

1 solution

Here is a two step approach for this.

--Add new colunm
SQL
ALTER TABLE Users
   ADD ConfirmPassword Datatype NULL;


--Update Table
SQL
UPDATE Users
SET ConfirmPassword = Password;
 
Share this answer
 
Comments
fjdiewornncalwe 27-Nov-12 14:11pm    
+5. Solves the OP's question.
RaisKazi 27-Nov-12 14:14pm    
Thank you Marcus.
Harish Reddy K 28-Nov-12 3:50am    
Thank you RaisKazi...
RaisKazi 28-Nov-12 10:15am    
Welcome, :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900