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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:07:19+00:00 2026-05-11T05:07:19+00:00

I have a table with two fields of interest for this particular exercise: a

  • 0

I have a table with two fields of interest for this particular exercise: a CHAR(3) ID and a DATETIME. The ID identifies the submitter of the data – several thousand rows. The DATETIME is not necessarily unique, either. (The primary keys are other fields of the table.)

Data for this table is submitted every six months. In December, we receive July-December data from each submitter, and in June we receive July-June data. My task is to write a script that identifies people who have only submitted half their data, or only submitted January-June data in June.

…Does anyone have a solution?

  • 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. 2026-05-11T05:07:20+00:00Added an answer on May 11, 2026 at 5:07 am

    I later realised that I was supposed to check to make sure that there was data for both July to December and January to June. So this is what I wound up in v2:

    SELECT  @avgmonths = AVG(x.[count]) FROM    ( SELECT    CAST(COUNT(DISTINCT DATEPART(month,                                                  DATEADD(month,                                                          DATEDIFF(month, 0, dscdate),                                                          0))) AS FLOAT) AS [count]           FROM      HospDscDate           GROUP BY  hosp          ) x  IF @avgmonths > 7      SET @months = 12 ELSE      SET @months = 6   SELECT  'Submitter missing data for some months' AS [WarningType],      t.id FROM    TheTable t WHERE   EXISTS ( SELECT 1                  FROM   TheTable t1                  WHERE  t.id = t1.id                  HAVING COUNT(DISTINCT DATEPART(month,                        DATEADD(month, DATEDIFF(month, 0, t1.Date), 0))) < @months ) GROUP BY t.id 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table with two decimal(18,0) fields. I am inserting into this table,
I have a MySQL db with a table containing two fields: check_date (of DATETIME
I have a table that have two fields. table test { fname char(20), id
I have a table:'Categories' which has two fields:Category_ID and Category. Data in Category_ID field
This is kind of difficult to describe. I have a table with two fields:
I have a table. And it has two fields id and datetime . What
I have one table that has two fields - ID1 and ID2 ID1 can
I have a table, myTable that has two fields in it ID and patientID
I have a query which searches two separate fields in the same table... looking
I have a table, called Prices composed of a few fields, two of which

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.