i have a table with fields(id,name,accnt_type)and in account
type are FD,SAVING,RD. Write a query to get How many number
of People are in each type of Account?
Answer Posted / jithu
Select count(accnt_type), accnt_type from Account where
accnt_type in
(FD,SAVING,RD) group by accnt_type having count(accnt_type)>0;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How many developers work on postgresql?
What is the sql case statement?
Why do we use view in sql?
What is duration in sql profiler trace?
What are packages in pl sql and also explain its advantages?
What is compilation error in pl sql?
What is the maximum number of columns in sql table?
How can you save or place your msg in a table?
Is it possible to create the following trigger: before or after update trigger for each row?
What is dbo in sql?
Can a key be both primary and foreign?
What is the difference between a primary key and a clustered index?
what is query cache in mysql? : Sql dba
How do temporal tables work?
How does a self join work?