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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T17:36:56+00:00 2026-05-25T17:36:56+00:00

Possible Duplicate: How to execute mathematical expression stored in a varchar variable Using pure

  • 0

Possible Duplicate:
How to execute mathematical expression stored in a varchar variable

Using pure TSQL, is it possible to evaluate an expression defined to a variable?

Here is a simple example, its only for proof in concept:

DECLARE @TestValue AS VARCHAR (2) = '7';
DECLARE @myRule AS VARCHAR (100) = 'case when (#val#>0 and #val#<10) then 1 else 0 end';

SET @myRule = replace(@myRule, '#val#', @TestValue);
PRINT @myRule;
-- case when (7>0 and 7<10) then 1 else 0 end

--How to evaluate the expression in @myRule for True/False?
  • 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-25T17:36:56+00:00Added an answer on May 25, 2026 at 5:36 pm

    –Based on How to execute mathematical expression stored in a varchar variable

    DECLARE @out AS BIT, @sql AS NVARCHAR (4000);
    SET @sql = N'SELECT @out = ' + @myRule;
    EXECUTE sp_executesql @sql, N'@out bit OUTPUT', @out OUTPUT;
    PRINT 'sp_executesql=' + CAST (@out AS VARCHAR (10));
    --sp_executesql=1
    

    I’ve tested this approach and it seems to be sound. Not sure if there are performance considerations, but for now I’ll mark as answered.

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

Sidebar

Related Questions

Possible Duplicate: How to execute an .SQL script file using c# How would I
Possible Duplicate: What is a simple example of floating point/rounding error? When I execute
Possible Duplicate: How do you send email from a Java app using Gmail? How
Possible Duplicate: Why does C# execute Math.Sqrt() more slowly than VB.NET? I'm running into
Possible Duplicate: Ruby: difference between || and ‘or’ Using Ruby || and or are
Possible Duplicate: Start local PHP script w/ local Python script How do you execute
Possible Duplicate: Auto-open NERDTree in “EVERY” tab Is there a way to automatically execute
Possible Duplicate: Java REPL shell Hey, Is there any way to execute Java code
Possible Duplicate: C# eval equivalent? Hi - I was wondering how I can execute
Possible Duplicate: How to enable PHP short tags ? I am using Apache Friends

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.