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
Why we use triggers in mysql?
What do you mean by field in sql?
How do you determine the current isolation level? : Transact sql
What is the difference between microsoft sql and mysql?
How can I tell if sql is running?
What is a schema sql?
What is the difference between nested table and varray?
How much does sqlite cost?
define sql delete statement ? : Sql dba
What are the different ddl commands in sql?
how to run 'mysql' commands from a batch file? : Sql dba
How show all rows in sql?
What is sql character function?
explain mysql aggregate functions. : Sql dba
What are all the common sql functions?