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 9184577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:05:18+00:00 2026-06-17T19:05:18+00:00

I was recently asked the following question during an interview: Return all duplicate rows

  • 0

I was recently asked the following question during an interview:

Return all duplicate rows in a table that are between two different
dates / times.

My best guess is:

SELECT *, 
COUNT(LogDate) AS NumOccurrences
FROM LogTable
WHERE LogDate > "SomeDate" 
AND LogDate < "SomeDate"
GROUP BY LogDate
HAVING ( COUNT(LogDate) > 1 )

Am I in the ballpark? Any thoughts on the right answer?

Thanks.

  • 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-17T19:05:19+00:00Added an answer on June 17, 2026 at 7:05 pm

    No need to count(*) in the select (not as your question is formulated at least).

    All fields in the select must be in the GROUP BY clause (but you can have more in the GROUP BY than in the SELECT, of course)

    SELECT field1, field2, LogDate
    FROM LogTable
    WHERE LogDate BETWEEN "SomeDate" AND "SomeOtherDate"
    GROUP BY field1, field2, LogDate
    HAVING COUNT(*) > 1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Recently I was asked the following question at interview. What are the different way
Recently I was asked the following interview question: You have two sets of numbers
I recently attended an interview and was asked the following question. There are two
Recently, I have been asked a question in an interview what's the difference between
I was asked following question in interview recently: Let suppose you have, following grid
Friend of mine got asked the following question in an interview recently and im
Recently in a job interview I was asked this following question (for Java): Given:
Recently I was asked the following questions in an interview: How will you do
I recently asked the question Is the behavior of return x++; defined? The result
I was recently asked this question in an interview. Lets suppose I have 2000

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.