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
 Transact-SQL (2000)
 reserve name: quantity?

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2002-02-24 : 21:45:05
Braun writes "hallo SQL - team,

can you tell me, why this SQL-Update doesn't work?

the SQL-update looks like this:
UPDATE t_PROOF
SET quantity = 4
WHERE ref = 8547

"

Tigger
Yak Posting Veteran

85 Posts

Posted - 2002-02-24 : 22:10:18
What error message do you get?

Running this works ok:
create table temp (quantity integer, ref integer)

insert into temp
values(0,8547)

UPDATE temp
SET quantity = 4
WHERE ref = 8547



Go to Top of Page
   

- Advertisement -