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
NetworkStream.DataAvailabl<wbr />e returns false
sql query using count
tool to compare 2 Folders
Sending and Receiving Data like a Dataset using WCF between two or more programs over internet without IIS Configurations
SCCM Application to delete old Computers from SCCM Database & Active Directory?
VB.NET: get control by name and Reflection performance
Raising Domain Functional Level from Windows 2000 to 2003
Need help with combobox not selecting the correct record
DoCmd.RunMacro Problem/Question
Tables with fixed number of rows