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 to select random rows from a table?
Does oracle roll back the transaction on an error?
What is string data type in sql?
define sql insert statement ? : Sql dba
Why we use join in sql?
What does a pl/sql package consist of?
How many unique keys can a table have?
What is the starting oracle error number?
Is grant a ddl statement?
Why is a primary key important?
Is sql difficult?
Can you join views in sql?
What is sql*plus?
Is pl sql useful?
How do you rank data in sql?