Click here to Skip to main content
15,886,781 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
i have 14 states in one column how to select data on the basis of different 14 states and select data on a single state in one single query
Posted
Comments
RAHUL(10217975) 10-Mar-14 6:58am    
InComplete question. What you have tried? give example. Draw table structure column with data

1 solution

You can use a CTE to create different grouped data which you then merge. You can also group by different things in the same query by using OVER as in

SQL
select count(item1) over (group by id) as byId, count(item1) over (group by name) as byName from myTable
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900