how to count datewise data in sqlserver
Answer Posted / vidit tyagi
select BillDate, count(*) from AdminSalesDetailsItems group
by convert(BillDate,varchar,101)
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
How to Insert multiple rows with a single insert statement?
What does <> symbol mean?
How to find related tables in sql server?
How can you list all the columns in a database?
How do I trace a query in sql server?
What is Transparent Data Encryption?
What is the difference between upgrade and migration in sql server?
What are subqueries in sql server? Explain its properties.
Define indexes?
What is sql server used for?
How do I create an extended event in sql server?
What are the advantages dts has over bcp?
Can I work with several databases simultaneously? : sql server management studio
You want to check the syntax of a complicated update sql statement without executing it. What command should you use?
How is foreign key related to primary key?