How can I find questions that are tagged with multiple tags, for example, BOTH regex AND python?
I've found answers on meta about using the browser to search multiple tags, but this question is specific to the SEDE: https://data.stackexchange.com
In the table Posts, the column Tags are stored as ncharv(250) and tags are appended to the string (not stored as array). In the browser, it looks like this
I only need the question (and answer) text for some text mining, so I had tried going direct to the Posts table:
pseudo_sql
- select * from Posts where Tags in (tag_list)
this returns tag1 OR tag2
- select * from Posts p1 inner join Posts p2 ON p1.Tags in (tag1) AND p2.Tags in (tag2)
I've also tried a larger query based on this popular query.

For multiple tags, one inefficient way to use SEDE is multiple
LIKEstatementsThis will get you also similar tags, for example, python-3.x.
To get only those tags and no fuzzy matching, use
permalink