根据 SQL2005 中 A 列中的值设置 B 列中的值?

发布于 2024-10-20 07:56:41 字数 284 浏览 0 评论 0原文

我正在尝试获取现有列并解析字符串中的某些单词(即“工作表”、“页面”、“卡片”)的每一行,并根据该单词(这些单词之一只有一个实例位于一行中)填充一个新列在同一个表中具有一个值。如果没有找到任何这些单词,请将 B 列留空。

IE 列 A 包含单词“Sheet”,用字母“S”填充列 B

因此该表将类似于:

Column A  Column B
Sheet        S
Page         P
Card         C

任何帮助将不胜感激!

I'm trying to take an existing column and parse each row for certain words in a string, i.e. Sheet, Page, Card, and based on that word (only one instance of one of these words is in a row) populate a new column in the same table with a value. If it did not find any of those words, leave Column B blank.

I.E. Column A contains the word "Sheet", populate Column B with the letter "S"

So the table would be something like:

Column A  Column B
Sheet        S
Page         P
Card         C

Any help would be appreciated!

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

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

发布评论

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

评论(3

单挑你×的.吻 2024-10-27 07:56:41
UPDATE YourTable
    SET ColumnB = CASE WHEN ColumnA LIKE '%Sheet%' THEN 'S'
                       WHEN ColumnA LIKE '%Page%' THEN 'P'
                       WHEN ColumnA LIKE '%Card%' THEN 'C'
                       ELSE NULL /* or '' if you prefer */
                  END
UPDATE YourTable
    SET ColumnB = CASE WHEN ColumnA LIKE '%Sheet%' THEN 'S'
                       WHEN ColumnA LIKE '%Page%' THEN 'P'
                       WHEN ColumnA LIKE '%Card%' THEN 'C'
                       ELSE NULL /* or '' if you prefer */
                  END
逆光飞翔i 2024-10-27 07:56:41
;WITH mappings (ColumnA, ColumnB) AS
(
 SELECT 'Sheet','S' UNION ALL
 SELECT 'Page','P' UNION ALL
 SELECT 'Card','C' 
)
UPDATE y
SET y.ColumnB= m.ColumnB
FROM YourTable y
JOIN mappings m ON y.ColumnA LIKE '%' + m.ColumnA + '%'
;WITH mappings (ColumnA, ColumnB) AS
(
 SELECT 'Sheet','S' UNION ALL
 SELECT 'Page','P' UNION ALL
 SELECT 'Card','C' 
)
UPDATE y
SET y.ColumnB= m.ColumnB
FROM YourTable y
JOIN mappings m ON y.ColumnA LIKE '%' + m.ColumnA + '%'
梅窗月明清似水 2024-10-27 07:56:41
update myTable 
set columnB = substring(columnA, 1, 1) 
update myTable 
set columnB = substring(columnA, 1, 1) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文