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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:17:31+00:00 2026-05-29T06:17:31+00:00

I am trying to produce a sql query based report that will allow a

  • 0

I am trying to produce a sql query based report that will allow a date range to be inserted in order to get a selection of the data available.

The problem I am having is that when I try this I get the error:

Must declare the scalar variable “@DateFrom”.

the sql i am using is below:

SELECT
  [Cost Category ID]
FROM 
   SRVS.dbo.PACostCategories
WHERE
    (@DateFrom IS NULL OR alias.myDate>= @DateFrom) AND
    (@DateTo IS NULL OR alias.MyDate < DATEADD(d, 1, @DateTo))

Any pointers to get me in the right direction much appreciated.

  • 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-29T06:17:31+00:00Added an answer on May 29, 2026 at 6:17 am

    You have to declare the variable before you try to run your query. You need to do the following to get this to work:

    DECLARE @DateFrom datetime
    DECLARE @DateTo datetime
    
    SET @DateFrom = yourDateFromValue
    SET @@DateTo= yourDateToValue
    
    SELECT [Cost Category ID]
    FROM  SRVS.dbo.PACostCategories
    WHERE (@DateFrom IS NULL OR alias.myDate>= @DateFrom) AND
          (@DateTo IS NULL OR alias.MyDate < DATEADD(d, 1, @DateTo))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a query in SQL Server that will search for
I am trying to do rather complex SQL query to produce a report. This
I'm trying to produce a report that has multiple grouping but does not just
I am trying to construct an sql query using a while loop that increments
I am trying to get this SQL query to grab 1 more thing from
I'm trying to convert this SQL query to LINQ: SELECT Items.p_Name Product, DiamondCategory.dc_Name Category,
I'm trying to write sql that produces the desired result from the data below.
I have a sql query that performs the type of select I'm after: select
I'm new to EJB and trying to get my head around translating SQL concepts
I have two tables that I am trying to join in a query, but

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.