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 / shivainduja
Select count(*), accnt_type from Account where accnt_type in
(FD,SAVING,RD) group by accnt_type;
| Is This Answer Correct ? | 30 Yes | 6 No |
Post New Answer View All Answers
Explain autonomous transaction.
is mysql query is case sensitive? : Sql dba
How to write html code in pl sql?
Explain alias in sql?
What is t sql used for?
What do you mean by dbms? What are its different types?
What are sql constraints?
What is a mutating table and a constraining table?
What are the benefits of triggers?
What is an alias command?
What are the differences between in and exists clause?
Is sql port 1433 encrypted?
Is ms sql traffic encrypted?
give the syntax of grant and revoke commands? : Sql dba
what happens if null values are involved in expressions? : Sql dba