How can I distinguish between the levels of badges for a particular tag, say linq, 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 c# badge)?