Search Results

4
votes

Fastest way to iterate over a stack in c#

Yes, using a generic stack will spare the cast. …
0
votes

Finding head and tail events in SQL Server (Optimisation)

Here is a version with joins: select distinct e1.* from #event e1 left outer join #event e2 ON e1.id = e2.id and e2.date < e1.date and e2.type <> 1 …