将数据插入新列,同时依赖于另一列中的数据

发布于 2025-01-12 02:54:03 字数 269 浏览 1 评论 0原文

我在表中添加了一个新列:

Column Name: "Status"
DataType = varchar

在同一个表中,我有一个名为 Bin 的现有列,其数据类型为 INT,它包含值:0 和 1 (1000行)。

我想要做的是,每当“Bin”=1 时,在“状态”中插入“成功”一词,当“Bin”=0 时,在“状态”中插入“失败”。

有什么想法如何使用 SQL 语句执行此操作吗?

I have added a new column to my table:

Column Name: "Status"
DataType = varchar

In the same table I have an existed column called Bin with datatype INT, and it contains the values: 0 and 1 (1000 rows).

What I want to do, is to insert the word "Success" to "Status" whenever "Bin"=1, and "Failure" when "Bin"=0.

Any ideas how to perform this using SQL statement?

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

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

发布评论

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

评论(2

焚却相思 2025-01-19 02:54:03

使用 Case 表达式您可以更新表。

Update table_name
 Set Status = Case Bin 
                 WHEN 1 THEN 'Success'
                 WHEN 0 THEN 'Failure'
               END

Using Case expression you can update your table.

Update table_name
 Set Status = Case Bin 
                 WHEN 1 THEN 'Success'
                 WHEN 0 THEN 'Failure'
               END
土豪我们做朋友吧 2025-01-19 02:54:03

您可以为此目的添加一个计算列,而不是添加一列来存储完全确定性的数据:

alter table T add [Status] as case Bin when 1 then 'Success' else 'Failure' end 

Instead of adding a column to store completely deterministic data you could add a computed column for this purpose:

alter table T add [Status] as case Bin when 1 then 'Success' else 'Failure' end 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文