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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:09:47+00:00 2026-05-23T08:09:47+00:00

I want to create one stored procedure where i want to insert values in

  • 0

I want to create one stored procedure where i want to insert values in a table.
But i don’t know in which field i have to insert values and at the
runtime i will decide in which field the values should be inserted.
What i want to do is

insert into Tablename(@ColumnName, Description) 
values (@ColumnValue, @MH_Description)

Can it possible that i pass this type of parameters in stored procedure as shown in the example above??

I want to use conditions too as

declare @Query nvarchar(4000)
declare @Query1 nvarchar(4000)
declare @ParmDefinition nvarchar(500);

set @Query = '
    insert into tbl_temp(' + quotename(@ColumnName) +',Description)

    values (@ColumnValue, @Description)'
    set @Query1 = '
    update tbl_temp set' + quotename(@ColumnName) +'=@ColumnValue, Description=@Description'
set @ParmDefinition = N'@ColumnValue varchar(100),@Description varchar(100)'
if exists(select 'true' from tbl_temp where quotename(@ColumnName)=@ColumnValue)
begin         
  exec sp_executesql @Query1, @ParmDefinition, @ColumnValue = @ColumnValue, @Description = @Description
end
else 
begin      exec sp_executesql @Query, @ParmDefinition, @ColumnValue= @ColumnValue, @Description = @Description
end

What am I doing wrong?

  • 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-23T08:09:47+00:00Added an answer on May 23, 2026 at 8:09 am

    This is not possible to do with parameters. You will need to build dynamic query to achieve this.

    The proc that uses dynamic SQL would look like this:

    create procedure MyProc
    (
        @ColumnName varchar(100),
        @ColumnValue varchar(100),
        @MH_Description varchar(100)
    )
    as
    begin
        declare @Query nvarchar(4000)
        declare @ParmDefinition nvarchar(500);
    
        set @Query = '
            insert into Tablename(' + quotename(@ColumnName) +',Description) 
            values (@ColumnValue, @MH_Description)'
        set @ParmDefinition = N'@ColumnValue varchar(100), @MH_Description varchar(100)'
        exec sp_executesql @Query, @ParmDefinition, @ColumnValue = @ColumnValue, @MH_Description = @MH_Description
    end
    

    [EDIT] Answer to your second question. Make it one query instead of two

    set @Query = '
        if exists(select * from tbl_temp where '+quotename(@ColumnName)+' = @ColumnValue)
            update tbl_temp set' + quotename(@ColumnName) +' = @ColumnValue, Description=@Description
        else        
            insert into tbl_temp(' + quotename(@ColumnName) +',Description)
        values (@ColumnValue, @Description)'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one input parameter categoryid . I want to create a stored procedure
I have created a stored procedure, with one optional parameter, which defaults to NULL
I want to call the Stored Procedure which returns a table in the Table
I want to create SQL statement (probably a stored procedure) to insert multiple rows
I have a stored Procedure (Generate_Insert)which will output an Insert statement as output given
I'm using a stored procedure to update\insert data into a table using MERGE. One
I want to execute stored procedure with one parameter that returns table using EF4
I want to create one proc like below but it has error on syntax.
i want to create one textbox which accept city or country name and when
I want to create unit tests for one of my project's classes but I'm

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.