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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:51:16+00:00 2026-05-17T15:51:16+00:00

I wanna update first and last name of one table with incremental value. For

  • 0

I wanna update first and last name of one table with incremental value. For example:-

ID   FirstName  
1    Demo_01    
2.   Demo_02
3.   Demo_03
4.   And so on....

This table has 1000s of records. But for demo purposes we do not want to share real Name. So Please help how to update First Name with “Demo_ + Incremental value by one?

  • 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-17T15:51:17+00:00Added an answer on May 17, 2026 at 3:51 pm
    ;with cte as
    (
    SELECT FirstName, ROW_NUMBER() OVER (ORDER BY ID) RN
    FROM YourTable
    )
    
    UPDATE cte
    SET FirstName = 'Demo_ ' + CAST(RN AS VARCHAR(10))
    

    Or do you mean you want to use the ID field directly?

    UPDATE YourTable
    SET FirstName = 'Demo_ ' + CAST(ID AS VARCHAR(10))
    

    NB: You say you have thousands of records but obviously they won’t fit in the Demo_01 format. Say you want to allow up to 6 digits and pad with leading zeroes you could use something like.

    UPDATE YourTable
    SET FirstName = 'Demo_ ' + RIGHT('000000' + CAST(ID AS VARCHAR(6)),6)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a table like this one: id | name | score mapped to
I wanna update remote table with following code but I encounter this error: `Msg
So i wanna pairing users only in PHP: First, get one avaliable user id
I have a table with fields ID(primary key),Name and Address. how can i update
I wanna upload/update file by System.IO.FileStream in Google Documents List API(C#)? I use two
i wanna do a single selection in my table view here is my code
I wanna check sharepoint title first and see if the lib doesn't have that
I wanna get the string representation of a variable. For example, (def my-var {})
I wanna to detect an input tag that its name is: some[en] in jquery.
I have navigation-based application with first RootViewController. I wanna to protect it with password

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.