gpt4 book ai didi

sql - where 子句中的 RTRIM

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

我使用的是 Microsoft SQL Server 2012 Management Studio。在我的下表中,我试图删除从 2019 年 1 月 1 日到 2019 年 1 月 4 日的 5 位数长或破折号后以零开头的 ID 号。

IDnum        DateTime
-----------------------
11-102434 03/01/2019
11-02434 03/01/2019
11-102421 02/01/2019
11-02421 02/01/2019
10-02345 31/12/2018

这是我想看到的

IDnum        DateTime
-------------------------
11-102434 03/01/2019
11-102421 02/01/2019
10-02345 31/12/2018

我认为 where 子句中需要某种 RTRIM() 但不确定如何执行此操作。

最佳答案

这不是一个相对简单的where子句吗?

where not (datetime >= '2019-01-01' and datetime < '2019-01-05' and
(idnum like '%-_____' or
idnum like '%-0%'
)
)

关于sql - where 子句中的 RTRIM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54022116/

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