Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multi-row modification is not supported ???

Status
Not open for further replies.

WMitchellCPQ

Programmer
Sep 28, 2001
54
0
0
US
Im trying the SQL following code..

Code:
UPDATE    [Order]
SET              InvoiceTo = RTRIM(InvoiceTo)
WHERE     (RIGHT(InvoiceTo, 1) = ' ')

However im getting a multirow modification error when i try and run it against my order table. Order is a really big table..

I hate working on Holidays :(
 
Code:
UPDATE table_name
SET    InvoiceTo = RTRIM(InvoiceTo)
WHERE  RIGHT(InvoiceTo, 1) = ' '

Should work

[bandito] [blue]DBomrrsm[/blue] [bandito]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top