gpt4 book ai didi

SQL:选择任一列匹配的位置

转载 作者:行者123 更新时间:2023-12-04 13:40:03 25 4
gpt4 key购买 nike

我将说明我的问题:

查看包含两列的表:Col1 和 Col2。

-----------------   
| Col1 | Col2 |
-----------------
| 1a1 | 2b2 |
-----------------
| 11b | 22a |
-----------------

我正在尝试选择包含 的值a 在任一列中。

所需的输出是:
------------
| MyNewCol |
------------
| 1a1 |
------------
| 22a |
------------

提前感谢您的时间。

最佳答案

select col1 as newCol
from your_table
where charindex('a', col1) > 0
union all
select col2
from your_table
where charindex('a', col2) > 0

关于SQL:选择任一列匹配的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41653914/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com