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.
| 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_PROOFSET quantity = 4WHERE 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 tempvalues(0,8547)UPDATE tempSET quantity = 4WHERE ref = 8547 |
 |
|
|
|
|
|