Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Hello all,
I have data like :-

year amt
2004 10
2005 20
2006 30

Now i want output as:-

2004 2005 2006
10 30 60

but i have to use here group by on year.So, i need a single
query within that i can find.

Answer Posted / sagun sawant

select ((select sum((case when year = '2004' then (amt)
else 0 end)) from account )) as [2004]
,((select sum((case when year = '2005' then (amt)
else 0 end)) from account )) as [2005]
,((select sum((case when year = '2006' then (amt)
else 0 end)) from account )) as [2006]

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you pass expressions to function parameters?

1154


Is there any performance difference between if exists (select null from table) and if exists (select 1 from table)?

1011


How many partitions a clustered index has by default in sql server 2012?

1139


What are group functions in query statements in ms sql server?

1065


Indexes are updated automatically is the full-text index also updated automatically?

1065


What is 1nf normalization form?

1083


Where actually sql azure database is hosted?

167


How to make a remote connection in a database?

1023


List out some of the requirements to set up a sql server failover cluster?

1077


What is the difference between a function and a stored procedure?

1125


How to create an identity column?

1301


How to apply filtering criteria at group level with the having clause in ms sql server?

1046


Please explain go command in sql server?

1112


What is the rdl file?

141


Explain sub-query?

1014