gpt4 book ai didi

sql - 如何在 SQL Server 中使用 substr?

转载 作者:行者123 更新时间:2023-12-04 19:14:19 27 4
gpt4 key购买 nike

我有以下在 SAS 中使用的代码的摘录,并想在 SQL Server 中编写它以提取数据。

substr(zipname,1,4) in("2000","9000","3000","1000");run; 

如何在 SQL Server 中编写此代码?

我试过并得到了这个错误:

An expression of non-boolean type specified in a context where a condition is expected

最佳答案

在 sql server 中,没有 substr 函数(它是 substring )

顺便说一下,你需要一个完整的查询...

select blabla
from blibli
where substring(zipname, 1, 4) in ('2000', '9000', 3000', '1000')

假设 zipname 是一个 varchar 或类似的东西......

关于sql - 如何在 SQL Server 中使用 substr?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21458092/

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