Sql 将列解析为 int 并检查它是否在范围内

发布于 2024-12-03 17:54:44 字数 362 浏览 3 评论 0原文

我使用了此处中投票最高的答案来检查单元格值是否是一个整数。但我还需要对其进行范围检查。

SELECT * FROM Table
WHERE (dbo.IsInteger(FieldName) = 1) AND FieldName > 400 AND FieldName < 500

但这会返回转换错误,因为列中的某些单元格包含文本。那么,是否有可能获得一个子集,即仅来自 IsInteger 查询的结果,然后对结果进行范围检查?

I've used the top voted answer from here to check if a cell value is an integer. But I also need to do a range check on it.

SELECT * FROM Table
WHERE (dbo.IsInteger(FieldName) = 1) AND FieldName > 400 AND FieldName < 500

But this returns a conversion error, as some of the cells in the column contains text. So, is it possible to get a subset, that is only results from the IsInteger query, and then do a range check on the result?

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

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

发布评论

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

评论(1

云淡月浅 2024-12-10 17:54:44

您需要将其包装在 CASE 表达式中。我稍微更改了查询以使用 BETWEEN 以避免重复表达式。

SELECT * FROM Table
WHERE CASE WHEN dbo.IsInteger(FieldName) = 1 
           THEN FieldName END BETWEEN 401 AND 499

dbo.IsInteger(FieldName) <> 时,表达式的结果将为 NULL。 1BETWEEN 谓词不匹配。

当然,这是完全不可控制的,但您的原始查询也是如此。

You need to wrap it in a CASE expression. I've altered the query slightly to use BETWEEN to avoid having to repeat the expression.

SELECT * FROM Table
WHERE CASE WHEN dbo.IsInteger(FieldName) = 1 
           THEN FieldName END BETWEEN 401 AND 499

The result of the expression will be NULL when dbo.IsInteger(FieldName) <> 1 which will not match the BETWEEN predicate.

Of course this is completely unsargable but so is your original query.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文