How can I distinguish between the levels of badges for a particular tag, say , querying SEDE?

For example, Mr. Jon Skeet has all the gold, silver and bronze badges, so the query

select *
from Badges b with (nolock)
where
    b.Name = 'linq'
and b.UserId = 22656

returns 3, with no distinction between them.

Is it possible to include such info into the dump, e.g. keep unique badge id (40 for the gold badge)?

link|improve this question

60% accept rate
4  
You can deduce that he earned the bronze badge first and the gold one last. – NullUserException อ_อ Dec 2 '11 at 22:45
But yeah, currently there's no distinction between them in the datadump. – NullUserException อ_อ Dec 2 '11 at 22:45
feedback

1 Answer

up vote 2 down vote accepted

Its too bad but I guess this is the only thing you can do is this Data.SE query

WITH linqbadges 
     AS (SELECT Rank() OVER (PARTITION BY b.userid ORDER BY b.DATE) rn, 
                b.userid, 
                b.DATE 
         FROM   badges b 
         WHERE  b.name = 'linq') 
SELECT u.displayname, 
       linqbadges.DATE AS date_earned, 
       CASE rn 
         WHEN 1 THEN 'bronze linq' 
         WHEN 2 THEN 'silver linq' 
         WHEN 3 THEN 'gold linq' 
       END             AS badge 
FROM   linqbadges 
       INNER JOIN users u 
         ON linqbadges.userid = u.id 
ORDER BY 
        displayname, 
        date_earned

The real trouble is that you can't tell a Tag Badge from a regular badge.

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged