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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:28:42+00:00 2026-06-11T15:28:42+00:00

DECLARE @command = ‘SELECT CASE WHEN ( SELECT COUNT(*) FROM [table] WITH ( NOLOCK

  • 0
DECLARE @command = 'SELECT  CASE WHEN ( SELECT  COUNT(*)
                    FROM    [table] WITH ( NOLOCK )
                    WHERE   DATEDIFF(minute, systemupdatedtimestamp, GETDATE()) < 10
                  ) > 0 THEN 0
             ELSE 1
        END'

Now I need to get the ‘return value’ of the above command (0 or 1).

EXEC(@commnad)

How do I get the return value from the above?

I tried

SET @ReturnValue = EXEC(@command)

but no luck.

  • 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-06-11T15:28:44+00:00Added an answer on June 11, 2026 at 3:28 pm

    use sp_executesql

    in your case it is something like:

    declare @myOut bit
    declare @SQLString nvarchar(500)
    set @SQLString = N'SELECT @myOutValue = CASE WHEN ( SELECT  COUNT(*)
                        FROM    [table] WITH ( NOLOCK )
                        WHERE   DATEDIFF(minute, systemupdatedtimestamp, GETDATE()) < 10
                      ) > 0 THEN 0
                 ELSE 1
            END'
    
    declare @ParmDefinition nvarchar(500)
    set @ParmDefinition = N'@myOutValue bit OUTPUT'
    
    
    EXECUTE sp_executesql @SQLString, @ParmDefinition, @myOutValue = @myOut OUTPUT
    select @myOut
    

    Update:

    To follow up on you comment. If you do not want to modify the original string containing your sql command (e.g. it is used in other places etc) you can wrap that command inside a new string something like:

    @SQLString = 'select @myOutValue = (' + @yourOrigSqlCommand + ')' 
    

    And call sp_executesql in the same way as above.

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

Sidebar

Related Questions

DECLARE @table table(XYZ VARCHAR(8) , id int) INSERT INTO @table SELECT '4000', 1 UNION
DECLARE @Symb varchar SET @Symb = 'Lara' SELECT Names FROM Cricket where Names like
Query DECLARE v_vendor_id NUMBER; BEGIN FOR vp_rec IN ( SELECT * FROM vpprocess )
The following PL/SQL block works: DECLARE r TABLE1%ROWTYPE; BEGIN SELECT * INTO r FROM
How can I use a table variable while executing a command string? DECLARE @FileIDs
I am using the CASE command to simply change a substring query result from
Declare: LPWSTR** lines= new LPWSTR*[totalLines]; then i set using: lines[totalLines]=&totalText; SetWindowText(totalChat,(LPWSTR)lines[totalLines]); totalLines++; Now I
declare @servername varchar(2000) set @EmriServerit=(select @@servername) declare @dbname varchar(2000) set @dbname ='Test1' declare @Dir
DECLARE @lastname VARCHAR(25) DECLARE @birthdate VARCHAR(25) SELECT @lastname = 'Smith' SELECT @birthdate = '19-Apr-36'
Visual Studio 2008 lets me declare a command and attach it to the post-build

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.