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
 General SQL Server Forums
 New to SQL Server Programming
 change one of the values of an existing line

Author  Topic 

landau66
Yak Posting Veteran

61 Posts

Posted - 2008-06-17 : 06:16:17
Hi everyone!

How can i change one of the values in an existing line (id = 10)

thanks a lot to this forum

landau66

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-06-17 : 06:29:02
do an update

Update table set field=newvalue where id=10
Go to Top of Page
   

- Advertisement -