Microsoft
Software
Hardware
Network
Question : How to get count of query with group by clause
Hello All,
I need to get count of group by clause which I am not able to figure out how to do it.
For Example: My Query is select * from license where address_type='T' groupby phone_number.
I need the count of the resultset returned by the query.
Thanks in advance.
-Dojjol
Answer : How to get count of query with group by clause
select count(tmp.*) from
(
select * from license where address_type='T' group by phone_number
) tmp
Random Solutions
How to retrieve and Entities Form or View Metadata
Documentation for Palo Alto PA 500 firewall
SQL mdf file attach error
Exchange 2010 Domain Prep
Deleted nested folders and files with powershell
Database on a 64 bit OS - Conection issues
Notes 8.5.1 - Increasing Java Heap Size - No com.ibm.rcp.j2se.<version>
file
VS 2010 Call Outlook New message in VB.NET
Domain Controller rename and IP change
'AddressOf' expression cannot be converted to 'Integer' because 'Integer' is not a delegate type.