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

The Archive Base Latest Questions

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

I have a select stored procedure and I am trying to make it so

  • 0

I have a select stored procedure and I am trying to make it so the results it bring down it also updates a column called Downloaded and marks those rows as downloads.

For example, I pull down 10 rows those 10 rows I also want to update the Downloaded column to true all in the same stored procedure. Is this possible?

This is my sp so far, it pulls down the data.

ALTER PROCEDURE [dbo].[GetLeads]
@DateTo datetime = null,
@DateFrom datetime = null
AS
    SELECT name
         , lastname
         , title
         , company
         , address
         , address2
         , city
         , [state]
         , zip
         , country
         , stamptime

    FROM
        lead
    where
         ((@DateTo is null AND @DateFrom IS null) or (stamptime BETWEEN @DateTo AND @DateFrom))

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-05-29T05:31:23+00:00Added an answer on May 29, 2026 at 5:31 am

    Continuing on vulkanino’s comment answer, something like this:

    ALTER PROCEDURE [dbo].[GetLeads]
    @DateTo datetime = null,
    @DateFrom datetime = null
    AS
        UPDATE  
            lead 
        SET     
            Downloaded = 1 
        WHERE   
            ((@DateTo is null AND @DateFrom IS null) or (stamptime BETWEEN @DateTo AND @DateFrom))
    
        SELECT name
             , lastname
             , title
             , company
             , address
             , address2
             , city
             , [state]
             , zip
             , country
             , stamptime
    
        FROM
            lead
        where
             ((@DateTo is null AND @DateFrom IS null) or (stamptime BETWEEN @DateTo AND @DateFrom))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to write a stored procedure to select employees who have birthdays that
I have been trying to make a stored procedure which autodeletes temporary tables. CREATE
Which command will executed first,If a stored procedure have individual multiple select commands;
I have a stored procedure which executes a select statement. I would like my
I have a stored procedure with multiple insert/select statements. Let's say I'm using the
I have a stored procedure DECLARE cursor FOR SELECT [FooData] From [FooTable]; OPEN cursor
I have a stored procedure that consists of a single select query used to
I have a stored procedure and if the stored procedure does this: SELECT 0
I have a stored procedure which basically does something like select top 1 expiryDate,
Say I have a stored procedure that returns data from a SELECT query. I

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.