Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8383771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T17:14:49+00:00 2026-06-09T17:14:49+00:00

I have two simple columns: datetime PayDate and int Amount I tried to write

  • 0

I have two simple columns: datetime PayDate and int Amount
I tried to write a query that separate count of Amount per day but it doesnt work.

SELECT YEAR(PayDate) + '/' + MONTH(PayDate) + '/' + DAY(PayDate) as a,
COUNT(Amount) as b
FROM TABLE1
GROUP BY a,b

Thank you for help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T17:14:51+00:00Added an answer on June 9, 2026 at 5:14 pm

    Why are you bothering with all this messy string concatenation? Format on the client if you want a specific output. Use base types instead of strings where possible.

    SELECT CONVERT(DATE, PayDate) AS a, COUNT(Amount) AS b
    FROM dbo.TABLE1
    GROUP BY CONVERT(DATE, PayDate);
    

    If you have a justified complex expression, the easiest way to avoid repeating it is to use a subquery or CTE:

    SELECT a, COUNT(b) FROM
    (SELECT CONVERT(DATE, PayDate) AS a, Amount AS b FROM dbo.TABLE1) AS x
    GROUP BY a;
    
    -- or
    
    WITH x(a,b) AS
    (SELECT CONVERT(DATE, PayDate), Amount FROM dbo.TABLE1)
    SELECT a, COUNT(b) FROM x
    GROUP BY a;
    

    (I have no idea why you are grouping by both a and b in your question.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a grid view that has two simple columns, a report number and
If I have a table that (among other columns) has two DATETIME columns, how
I have a very simple table with two columns, but has 4.5M rows. CREATE
I have a really simple table with two rows and two columns. I want
I have my own simple equal heights code in jQuery to make two columns
I have two very simple, identical UITableViews in my app that are populated with
I have these two simple files that define a C++ class with a tryME
I have two tables as follows: TableOne - RawDataId int (pk) - TimeStamp DateTime
I have a simple WPF ListView with two columns defined. By default when you
I've got a simple table Logins with two columns: username (nvarchar) logged (datetime) It's

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.