![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I need to update a value in IMA_GLInvAcctNbr from 11283 to 11500. the table name is dbo.item. What would my script look like to do this in SQL server 2005? The column has a silver key by it too in SQL Server Management Studio. |
#3
| |||
| |||
|
|
Brian (b.houghtby (AT) eaglecrusher (DOT) com) writes: I need to update a value in IMA_GLInvAcctNbr from 11283 to 11500. the table name is dbo.item. What would my script look like to do this in SQL server 2005? The column has a silver key by it too in SQL Server Management Studio. UPDATE dbo.item SET IMA_GLInvAcctNbr = 11500 WHERE IMA_GLInvAcctNbr = 11283 -- Erland Sommarskog, SQL Server MVP, esquel (AT) sommarskog (DOT) se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/pro...ads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinf...ons/books.mspx |
#4
| |||
| |||
|
|
What does the silver key mean? |
|
"Erland Sommarskog" <esq... (AT) sommarskog (DOT) se> wrote in message news:Xns9947EFB6764B9Yazorman (AT) 127 (DOT) 0.0.1... Brian (b.hough... (AT) eaglecrusher (DOT) com) writes: I need to update a value in IMA_GLInvAcctNbr from 11283 to 11500. the table name is dbo.item. What would my script look like to do this in SQL server 2005? The column has a silver key by it too in SQL Server Management Studio. UPDATE dbo.item SET IMA_GLInvAcctNbr = 11500 WHERE IMA_GLInvAcctNbr = 11283 -- Erland Sommarskog, SQL Server MVP, esq... (AT) sommarskog (DOT) se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/pro...ownloads/books... Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinf...ns/books.mspx- Hide quoted text - - Show quoted text - |
![]() |
| Thread Tools | |
| Display Modes | |
| |