Until recently, we hadn’t done a good job of providing a user interface for combining tags. You’ll notice that all the question browsers now show “related tags”, with a count of how many tags are shown for whatever view you happen to be in (with the exception of search):

stackoverflow-related-tags

Let’s say I clicked on the Python tag, anywhere on the Stack Overflow site. Clicking on a tag zips you away to a view of all the questions within that particular tag. Within the tag view, you can sort and browse as expected, but you can also click the related tags in the right sidebar to combine tags, like so:

stackoverflow-tagged-related-series

This isn’t exactly new; you could always do this manually in the URL by space delimiting the tags. However, these were always implicit ands, as in:

Show me all the questions tagged both “python” AND “django”

http://stackoverflow.com/questions/tagged/python django

We also support a slightly shorter synonym of this URL that does the same thing:

http://stackoverflow.com/tags/python django

But maybe that’s too specific for your tastes. Now you use the new or pseudo tag:

Show me all the questions tagged either “python” OR “django”

http://stackoverflow.com/questions/tagged/python or django

stackoverflow-tagged-or-clause

We also support NOT if you prefix the tag with a dash, like so:

Show me all the questions tagged “python” BUT NOT tagged “subjective”

http://stackoverflow.com/questions/tagged/python -subjective

stackoverflow-tagged-not-clause

This works throughout the site, including questions, unanswered questions, and all tag based RSS feeds. Anywhere on Stack Overflow you can specify a tag, you now specify multiple tags with or without the or clause.

I’m not sure if that’s super or awesome. I haven’t decided yet.

But either way, it was definitely a highly ranked request from a lot of users.

28 Responses

  1. Ian Robinson says:

    >> I’m not sure if that’s super or awesome. I haven’t decided yet.

    I’d go with jawsome!

  2. keith twombley says:

    This is cool, very cool.

    One slight problem, though. I wouldn’t call asking the users to manually type things into the URL bar a “a good job of providing a user interface”

    I’m not sure how I’d implement it in the UI, but here’s an idea. What if a normal AND search showed a little “and” button between the tags. Clicking on that button would change it to an “or” and refresh the results? It would work from a UI perspective, but I’m not sure how keen you are on making every “or” search result in 2 searches.

  3. jjnguy says:

    Thanks for keeping us updated with new features!

  4. Braden says:

    Impressive. Nice work.

    I like Keith’s UI idea.

  5. Shog9 says:

    Nice! *Very* nice!

    Now just figure out a discoverable UI for “or”… ;-)

  6. Joe says:

    Now, I agree with what keith said, as well.

    But, I must ask is it possible to do something like this:

    (TagA OR TagB) AND TagC

    If so, I think you did a great job…if not, well, there’s an idea. =)

    Also, are you aware that C# is read as C? I assume you are, but I’m just making sure.

  7. Jeff Atwood says:

    > Also, are you aware that C# is read as C?

    Try c%23 , naturally.. c-pound is old news! C-percent-twenty-three, that’s the future!

    http://stackoverflow.com/feeds/tag/c%23

  8. Jeff Atwood says:

    > One slight problem, though. I wouldn’t call asking the users to manually type things into the URL bar a “a good job of providing a user interface”

    Hmm, apparently Google did not get the memo on that.. all their searches are ANDs, and users have no idea how to do an OR query. It’s not discoverable! STUPID GOOGLE! GOSH!

    :)

  9. dbr says:

    Since it’s on the same lines - Is there any plans to do NOT queries? Say I am interested in Python, but not Django. Say..

    “python NOT django”

    or

    “python -django” (unless there are tags starting with “-” that it would conflict with)

  10. Jeff Atwood says:

    > Is there any plans to do NOT queries?

    yep, I forgot about that — it’s added now, and I updated the post.

    I also broke the C++ tag and that is fixed as well.

    I sort of regret allowing + in tags, because it makes this standard URL syntax:

    http://stackoverflow.com/questions/tagged/python+django

    difficult to support for tags with “++” in them, and we have quite a few..

  11. [ICR] says:

    Now if only we could save them as custom views. I suppose there’s always bookmarking.

  12. Jason says:

    You don’t seem to keen on updating the UI to support this, but I still thought I’d throw this out there:

    In the related tags list, add a “+” and “-” next to each tag. Clicking the tag name itself does what it does today. Clicking the “+” basically appends that tag to the URL so you can look at both (e.g. AND). Clicking the “-” will append “-” to the URL to filter it out.

    You could probably add a third item to allow for “OR”ing tags, but that’s probably not all that necessary from that UI as this would really just allow you to filter down the results.

    Anyways, just an idea… :)

  13. Joe says:

    > Try c%23 , naturally.. c-pound is old news!

    Silly Me! Thanks Jeff!

  14. keith twombley says:

    Everyone should learn C%23.

    Anyhow, with google you can just type “python OR django” in. with stackoverflow’s tags dealie if you type “python or django” it just stares at you blankly because there’s no tag named ‘or’.

    If you can guarantee you’ll never have a tags named ‘or’ or ‘and’ you could add a special case in the routine which does your out-of-band search result updates.

  15. Alfred B. Thordarson says:

    Using this stuff how can a indicate that I would like to see all the questions except for the php questions. I tried “http://stackoverflow.com/questions/tagged/-php” but that results in the same as leaving the ‘-’ out even though the text on the page says “not php”??!?!? So I got all the php questions instead of all the others.

  16. Aidan Ryan says:

    Echoing @AlfredBThoardarson, “http://stackoverflow.com/questions/tagged/-subjective -stackoverflow” returns posts tagged “subjective.”

    Added to http://stackoverflow.uservoice.com/pages/general/suggestions/35986

  17. Jacob says:

    The ability to specify “AND” vs. “OR” is *awesome*. You guys rock.

  18. Jeff Atwood says:

    > Echoing @AlfredBThoardarson, “http://stackoverflow.com/questions/tagged/-subjective -stackoverflow” returns posts tagged “subjective.”

    starting with “NOT” or “OR” is not allowed. You must start with at least one tag you actually want.

    (update, this is now possible, but it’s pretty hideously slow. see my comments below.)

  19. Greg Rogers says:

    Good job, but the ability to group ors and ands together is what would make not more attractive.

    ie. (A or B or C) -D -E -F

    Currently this doesn’t work (or at least not the way I expect it should)

  20. Sam Hasler says:

    This page isn’t working:

    http://stackoverflow.com/tags/-java

    It says “You’re browsing through 1,968 questions tagged not java” when it fact it’s 1,968 questions that ARE tagged java.

  21. Aidan Ryan says:

    First let me say thanks for implementing tag logic, it’s quite useful as it stands.

    @Jeff, saying “not allowed” makes it sound like it’s something that /shouldn’t/ be done, but it’s exactly what I want the feature to do (and I bet many others do too.) Also, if you’re using the feature not as intended, there should be some indication of the fact - @SamHasler’s experience shows that the system is telling him it’s trying to do what he asked, when in fact it’s not.

  22. Jeff Atwood says:

    > it’s something that /shouldn’t/ be done, but it’s exactly what I want the feature to do (and I bet many others do too.)

    Oh you can do it, it’s just balls slow [sam's comment is out of date].

    Why is it slow? Apparently in SQL “AND NOT” clauses are not indexable.. and behind the scenes that is what is being generated. Instead of this [NOTE: not valid SQL, just some pseudo-sql for illustration]

    SELECT (some crap)
    WHERE Tags IN (’java’, ’sql’, etc)

    you’re doing this:

    SELECT (some crap)
    WHERE Tags NOT IN (’subjective’, ’stackoverflow’, ‘offtopic’)

  23. Yuval says:

    Umm… Jeff?
    Google does indeed search the keywords in conjunction implicitly, but they offer an ‘Advanced search’ link, that is more helpful to the users in the area of ‘or’, ‘not’ and so on.
    Any chance we’ll see an advanced search page on SO?

  24. Grom says:

    Eh.. SQL Server must be pretty crap if it can’t deal with NOT clauses. Did you find anything on Google that backs up this claim?

  25. David B says:

    So, I guess the question is: Who’s going to make the “or” tag?

  26. Sean Patterson says:

    Another vote for AWESOME! I’ve been wanting this for a while. Thanks for the implementation!

  27. Imran says:

    > Hmm, apparently Google did not get the memo on that..
    > all their searches are ANDs, and users have no idea
    > how to do an OR query. It’s not discoverable! STUPID > GOOGLE! GOSH!
    >
    > :)

    The advanced search link (http://www.google.com/advanced_search) is in both Google’s homepage and search results page.

  28. Jeff Atwood says:

    > Any chance we’ll see an advanced search page on SO?

    You think you guys are “advanced” enough to handle it? I’m not so sure…

Leave a Reply