在Query中使用Keyword IN关键字

hap*_*ile 0 sql

select*from Resource where ResourceID = 1,ResourceKeyword in(gallery 1,1980)

我有一个名为resource 列的表 ResourceID, ResourceKeyword

ResourceKeyword 我在使用此查询时可以包含多个值

我收到语法错误

什么是解决它的语法

谢谢

gbn*_*gbn 7

随机猜测,字符串分隔符

select *
from resource
where ResourceID= 1 and ResourceKeyword in('gallery 1','1980')
Run Code Online (Sandbox Code Playgroud)