如何找到标有多个标签的问题,例如 BOTH regex AND python?
我在 meta 上找到了关于使用浏览器搜索多个标签的答案,但这个问题是 SEDE 特有的:https ://data.stackexchange.com
在 table 中Posts
,列Tags
存储为 ncharv(250) 并且标签附加到字符串(不存储为数组)。在浏览器中,它看起来像这样
我只需要一些文本挖掘的问题(和答案)文本,所以我尝试直接进入Posts
表格:
伪sql
- select * from Posts where Tags in (tag_list)
这将返回 tag1或tag2
- select * from Posts p1 inner join Posts p2 ON p1.Tags in (tag1) AND p2.Tags in (tag2)
我还尝试了基于这个流行查询的更大查询。