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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T05:34:51+00:00 2026-06-09T05:34:51+00:00

I currently have a Storedproc t hat is returning values for me to bind

  • 0

I currently have a Storedproc t hat is returning values for me to bind with a gridview in asp.net. One thing I want to do is combine two fields into one seperated by a / but I cannot seem to get this working.

Here is my stored proc

DECLARE @SQL VARCHAR(MAX);

BEGIN
SET @SQL = N'SELECT SYSTEM AS ''System''
            , ENTN AS ''Entity''
            , MED_CTR AS ''Medical Center''
            , MED_CTR_LEVEL AS ''Medical Center Level''
            , DEPT_ID AS ''Department ID''
    FROM V_ROLLUP_SYSTEM_DESC_REV1
    WHERE (DEPT_ID = '+CONVERT(VARCHAR,@DEPTCODE)+')
        AND SYSTEM IN ('+@SYS+')'
PRINT(@SQL)
EXEC(@SQL)

So I want to combine MED_CTR with MED_CTR_LEVEL seperated by a “/” and labeled as Medical Center/ Level. I cant seem to combine it thus far since every method I have tried to add a “/” in it has returned me nothing.

  • 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-09T05:34:52+00:00Added an answer on June 9, 2026 at 5:34 am

    This should work:

    SET @SQL = N'SELECT SYSTEM AS [System]
                , ENTN AS [Entity]
                , (MED_CTR +''/''+ MED_CTR_LEVEL) as [Medical Center/ Level]
                , DEPT_ID AS [Department ID]
        FROM V_ROLLUP_SYSTEM_DESC_REV1
        WHERE (DEPT_ID = '+CONVERT(VARCHAR,@DEPTCODE)+')
            AND SYSTEM IN ('+@SYS+')'
    

    And if you want to make sure the concat of the 2 columns always succeeds, you can do this:

    SET @SQL = N'SELECT SYSTEM AS [System]
                , ENTN AS [Entity]
                , ISNULL(MED_CTR,''N/A'') +''/''+ ISNULL(MED_CTR_LEVEL,''N/A'') ) as [Medical Center/ Level]
                , DEPT_ID AS [Department ID]
        FROM V_ROLLUP_SYSTEM_DESC_REV1
        WHERE (DEPT_ID = '+CONVERT(VARCHAR,@DEPTCODE)+')
            AND SYSTEM IN ('+@SYS+')'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have one project that currently contains multiple packages. These packages make up
We currently have one publisher and four subscribers using merge replication. Due to a
I have a stored proc that I am passing two parameters into. One parameter
I have two stored procedures that I want execute wrapped in a transaction. For
Currently have a drop down menu that is activated on a hover (from display:none
Currently have password protection on my main and sub directories, however I'd like to
I currently have a XSLT 2.0 Stylesheet that I am trying to remove empty
I currently have a table of concentrations, which are linked to a table of
I currently have 4 tables. Product, Category, SubCategory, ProductSubCategory. Category has a OneToMany SubCategory
I currently have a form with inputs and name attributes. I'm able to get

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.