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 / ramesh
Select count(id), accnt_type from Account
group by accnt_type;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which is faster joins or subqueries?
what is the use of double ampersand (&&) in sql queries?
What is partition by in sql?
What is composite primary key in sql?
Define commit, rollback and savepoint?
How do I write a cron which will run a sql query and mail the results to agroup?
What does seeding a database mean?
How does rowid help in running a query faster?
list out some tools through which we can draw e-r diagrams for mysql. : Sql dba
Is sql workbench free?
Sql technical questions
what is 'mysqlcheck'? : Sql dba
Is full outer join same as cross join?
What are the types of queries in sql?
Can we use two order by clause in query?