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 the difference between 'between' & 'and' operators in sql
What is varchar sql?
what is single byte over head in oracle..?
Name the operator which is used in the query for pattern matching?
Write a sql query to convert all character to uppercase after hypen.
What is t-sql? : Transact sql
What is cold data?
How many types of sql are there?
what is the difference between delete and truncate commands? : Sql dba
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
What is the use of sql trace?
What does dml mean?
explain primary keys and auto increment fields in mysql : sql dba
What is the difference between having and a where in sql?
how many sql dml commands are supported by 'mysql'? : Sql dba