Microsoft
Software
Hardware
Network
Question : SQL query
I have a table which has many records including user_id, activity_type
now i want to find the user_id which returns maximum records with activity_type = 2
Answer : SQL query
SELECT MAX(a.iCount)
FROM
(SELECT user_id, COUNT(user_id) as iCount
FROM Table1
WHERE activity_count=2
GROUP BY user_id) as a
Random Solutions
Install SQL 2008 tools only
Silverlight markup question (Canvas with Nested Grid)
MYSQL Webservice Vb.net
Hook and modify Windows Messages (even under Windows CE)
Shrink Massive Database? How to estimate how long it will take?
Hyperv server or virtual server setup
File Upload & Download using ASP.net 2.5 & MVC2.0
TextBox and Validation Rule
virtual network interface cards
I have a Windows Server 2003 OEM key, but only a Windows 2003 Server Enterprise Edition Disk. How can I use the Enterprise edition disk to install regular Server (non-enterprise)?