Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 sql & asp

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2002-02-26 : 09:18:02
ahmed writes "how can i update a field in a table in a database through ASP using a value of another field?"

andre
Constraint Violating Yak Guru

259 Posts

Posted - 2002-02-26 : 09:28:11
If the two fields are in the same table, you could use this:


UPDATE Table1 SET Field1=Field2;


Go to Top of Page
   

- Advertisement -