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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:34:48+00:00 2026-06-11T17:34:48+00:00

SELECT (CASE WHEN(percentage >= @Start AND percentage < @End) THEN SET @body ='<html><body><H3>Report</H3> <table

  • 0
SELECT (CASE
        WHEN(percentage >= @Start AND percentage < @End)                        
        THEN 
            SET @body ='<html><body><H3>Report</H3>
                        <table border = 1> 
                        <tr>
                        <th>No </th> <th> date </th> <th> lag </th> <th> Variance </th></tr>'    
            SET @body = @body + @xml +'</table></body></html>' 
        ELSE 'NULL' END) as Variance  
    FROM TestTbl

Msg 156, Level 15, State 1, Procedure SP_CheckDB, Line 31
Incorrect syntax near the keyword ‘SET’.
Msg 156, Level 15, State 1, Procedure SP_CheckDB, Line 36
Incorrect syntax near the keyword ‘ELSE’

Kindly help with this statement

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-06-11T17:34:49+00:00Added an answer on June 11, 2026 at 5:34 pm

    Use this

    Declare @str VARCHAR(MAX)
    
    SET @str = '<html><body><H3>Report</H3>
                <table border = 1> 
                <tr>
                    <th>No </th> <th> date </th> 
                    <th> lag </th> <th> Variance </th>
                </tr>'+ @xml +'</table></body></html>' 
    
    
    SELECT (CASE
            WHEN(percentage >= @Start AND percentage < @End)                        
            THEN @str
            ELSE 'NULL' END) as Variance  
    FROM TestTbl
    

    OR

    DECLARE @body VARCHAR(MAX) = 'NULL'
    
        IF(percentage >= @Start AND percentage < @End) THEN
        BEGIN
            SET @body ='<html><body><H3>Report</H3>
                        <table border = 1> 
                        <tr>
                            <th>No </th> <th> date </th> 
                            <th> lag </th> <th> Variance </th>
                        </tr>'    
            SET @body = @body + @xml +'</table></body></html>' 
        END
    
        SELECT Variance = @body
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

select case when ''!='abcd' then 'nodate' else 'date' end; Here I hope '' stand
SELECT CASE Price WHEN '' THEN 0.0 ELSE Price END FROM Table If price
This is my SQL: SELECT DISTINCT(CASE WHEN state=18 THEN lga ELSE 'Others' END) LGA,
select CASE WHEN ( rtt.us_code = 's' ) THEN rtt.name ELSE '' END AS
I have been using SELECT Author, ISNULL(MAX(CASE Status WHEN 'Duplicate' THEN NumDocs END),'') AS
SELECT ((CASE WHEN (qid2.AgeBelow_16 - qid1.AgeBelow_16)= 0 THEN 1 ELSE (qid2.AgeBelow_16- qid1.AgeBelow_16) END )/
select case when cntrctr_lcns_seq_no is null then 1 else max(cntrctr_lcns_seq_no) end as cntrctr_lcns_seq_no from
This works: SELECT (CASE WHEN x = 'value' THEN a.col1 ELSE nvl(a.col1, a.col2) END)
this is my final query select Codigo, Indicador, case when Indicador like '%Porcentaje%' then
SELECT CASE schuleArtID WHEN 1 THEN SUM(schuleSummeSchueler) / 8 WHEN 2 THEN SUM(schuleSummeSchueler) /

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.