如何进行这个简单的条件更新?

发布于 2024-09-10 10:19:51 字数 123 浏览 3 评论 0原文

我有一个 SQL 2000 服务器,其中有一个数据库 (ITinventory) 和一个也称为 ITinventory 的表。我想创建一个查询,该查询将查看“状态”字段,如果状态为“已处置”,那么我想将“位置”字段设置为“已处置”。

I have a SQL 2000 server with a database (ITinventory) and a table which is also called ITinventory. I would like to create a query which will look at the field 'Status', if the status is 'disposed' then I would like to set a 'location' field to 'disposed'.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

以酷 2024-09-17 10:19:51
update 
    ITinventory 
set 
    Location = Status 
where 
    Status = 'Disposed'
update 
    ITinventory 
set 
    Location = Status 
where 
    Status = 'Disposed'
小糖芽 2024-09-17 10:19:51

试试这个:

UPDATE ITInventory SET Location = 'disposed' 
WHERE Status = 'disposed' AND Location != 'disposed'

Try this:

UPDATE ITInventory SET Location = 'disposed' 
WHERE Status = 'disposed' AND Location != 'disposed'
转瞬即逝 2024-09-17 10:19:51
UPDATE ITinventory
SET location = 'disposed'
WHERE status = 'disposed'
UPDATE ITinventory
SET location = 'disposed'
WHERE status = 'disposed'
看海 2024-09-17 10:19:51
UPDATE ITInventory SET Location = 'disposed' WHERE Status = 'disposed'

这个 SQL 做出了各种假设,否则在 OP 中没有澄清......

UPDATE ITInventory SET Location = 'disposed' WHERE Status = 'disposed'

This SQL is making various assumptions otherwise not clarified in the OP...

孤独难免 2024-09-17 10:19:51
update ITinventory
set location='disposed'
where status ='disposed'
update ITinventory
set location='disposed'
where status ='disposed'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文