我正在尝试做一个搜索引擎,比如这里的stackoverflow。我需要选择包含任何选定标签的所有行。
桌子
RowID Question Tags
1 'who' 'C#'
2 'what' 'SQL'
3 'where' 'C#,PHP'
4 'when' 'PHP,SQL'
string[] myTags=new string{"c#","PHP'};
然后我的 sql select 语句是这样的
Select * from table where Tags like myTags[]
我希望有这样的结果
RowID Question Tags
1 'who' 'C#'
3 'where' 'C#,PHP'
4 'when' 'PHP,SQL'
当然我知道这在语法上是不正确的,这就是我在这里的原因。