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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:50:50+00:00 2026-05-31T18:50:50+00:00

I have a table that contains records with a column indicates the Date. Given

  • 0

I have a table that contains records with a column indicates the Date. Given a record, I would like to select all records that are in the same week as the record. How can SQL do that?

I should say that I’m using SQLite.

  • 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-05-31T18:50:51+00:00Added an answer on May 31, 2026 at 6:50 pm

    You can use DATEPART with wk to get the current week. Then just check for equality.
    In this case, I have also checked yy to make sure that you do not check the year of a previous week.

    SELECT * 
    FROM TABLE
    WHERE DATEPART(wk, TABLE.DATECOLUMN) 
            = DATEPART(wk, (SELECT DATECOLUMN FROM TABLE WHERE ID = GivenID))
        AND DATEPART(yy, TABLE.DATECOLUMN) = DATEPART(yy, (SELECT DATECOLUMN FROM TABLE WHERE   ID = GivenID))
    

    UPDATE FOR SQLITE

    To do this in SQLLite, Refer to this SO question and then this article that states %W is what you use to get week and %Y for year. Which gives you:

    SELECT * 
    FROM TABLE
    WHERE STRFTIME('%W', TABLE.DATECOLUMN) 
            = STRFTIME('%W', (SELECT DATECOLUMN FROM TABLE WHERE ID = GivenID))
        AND STRFTIME('%Y', TABLE.DATECOLUMN) 
            = STRFTIME('%Y', (SELECT DATECOLUMN FROM TABLE WHERE ID = GivenID))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table that contains a float column. There are many records in
I have a table that contains records, with a DATETIME column. I am writing
I have a table that contains millions of records. I'm altering one column data
I have about 40000 records in that table that contains plain text and within
I have some columns in my table, descriptions column contains some information like; a1b01,Value
I have a table that contains records that can become part of a bill.
Hello I have table name FriendsData that contains duplicate records as shown below fID
I have an innodb table that contains 70 million records and already has several
I have a large table (~10 million records) that contains several keys into other,
I have a products table with a column that contains a space separated list

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.