gpt4 book ai didi

mysql - 任何人都可以告诉我我的查询出了什么问题

转载 作者:行者123 更新时间:2023-11-29 06:15:47 24 4
gpt4 key购买 nike

我想搜索具有特定 ID 的名称。

select * from members where 1=1 AND MemberID IN('2,8') and Status = '1' AND (FirstName LIKE 'v%') ORDER BY MemberID

这是我的查询。谁能告诉我出了什么问题以及用特定 ID 搜索名称的正确查询是什么。

谢谢

最佳答案

You must not use single quotes in IN clause. If your MemberId column is varchar type or character type, you must use MemberID IN('2','8')

but if your MemberID is integer type, you must use: MemberID IN(2,8)

关于mysql - 任何人都可以告诉我我的查询出了什么问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6620704/

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