gpt4 book ai didi

sql - 如何在SQL中对列表进行多次OR匹配?

转载 作者:行者123 更新时间:2023-12-03 08:20:17 24 4
gpt4 key购买 nike

如何解决第一个逗号?存在语法错误。

if (@BAAgtNo = '0000ZV') and
(@ProfileNumber = '902876'***,*** '903673', '903674', '903675', '903676', '903677', '903678', '903679') -- If the booking agent result is 0 then..
begin

最佳答案

我想你想要IN:

if @BAAgtNo = '0000ZV' and
@ProfileNumber in ('902876', '903673', '903674', '903675', '903676', '903677', '903678', '903679') -- If the booking agent result is 0 then..
begin

关于sql - 如何在SQL中对列表进行多次OR匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53262197/

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