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

  • Home
  • SEARCH
  • 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 653545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:23:40+00:00 2026-05-13T22:23:40+00:00

Input @StartDate = ’01/25/2010′ @EndDate = ’02/06/2010′ I have 2 CTEs in a stored

  • 0

Input
@StartDate = ’01/25/2010′
@EndDate = ’02/06/2010′

I have 2 CTEs in a stored procedure as follows:

with CTE_A as
(
   [gives output A..Shown below]
),
with CTE_B as
(
  Here,
  I want to check if @StartDate is NOT in output A then replace it with the last known date. In this case, since @startdate is less than any date in output A hence @StartDate will become 02/01/2010.

  Also to check if @EndDate is NOT in output A then replace it with the last known date. In this case, since @enddate is 02/06/2010 hence it will be replace with 02/05/2010.

  // Here there is a query using @startDate and @EndDate.

)

output A

Name   Date   
A      02/01/2010  
B      02/01/2010  
C      02/05/2010  
D      02/10/2010 
  • 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-13T22:23:40+00:00Added an answer on May 13, 2026 at 10:23 pm

    You don’t need a 2nd CTE (untested)

    ...
    SELECT
        StartDate, EndDate
    FROM
        (
            SELECT TOP 1
                A.Date AS StartDate
            FROM
                CTEA A
            WHERE
                A.[Date] >= @StartDate
            ORDER BY
                A.Date
        ) Bmin
        CROSS JOIN
        (
            SELECT TOP 1
                A.Date AS EndDate
            FROM
                CTEA A
            WHERE
                A.[Date] <= @EndDate
            ORDER BY
                A.Date DESC
        ) Bmax
    

    You could use MAX/MIN too

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

Sidebar

Related Questions

I have this <%=Model.StartDate%> <%=Html.Hidden(StartDate, Model.StartDate)%> it outputs: 2010-05-11 11:00:00 +01:00 <input type=hidden value=2010-03-17
I have a project that Asks for input from the user (@startdate and @enddate)
Input: I have a LaTeX file, with plain text & math formulas. Desired output:
Objective : Generate dates based on Week Numbers Input: StartDate, WeekNumber Output: List of
I have this code: public IEnumerable<SomeClass> GetAvalibleThingies(DateTime startDate, DateTime endDate, int categoryID) { if
I have a web form which has 2 input fields, "StartDate" and "StartTime". I
I have two inputs, startdate and enddate , and I am using datepicker of
How can I specify the length of string input parameters of a stored procedure
I have 1 dropdown box[year], 2 text box [startDate, endDate] , whenever user select
Given an input of the format (currently a flat file): Name, StartDate, EndDate with

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.