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

  • Home
  • SEARCH
  • 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 3323260
In Process

The Archive Base Latest Questions

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

In my database there is a field in type VARCHAR (let’s name in field1),

  • 0

In my database there is a field in type VARCHAR (let’s name in field1), in some cases, I want to find special record and edit the value of field1, my query must be able to read the current value of field1 and add special string like “.a” at the end of it. I guess the query must be something like this:

UPDATE TableName SET field1 = CurrentValue +'a' WHERE field1 = CurrentValue ;

but its not complete, and there is error. Would you help me?!!

  • 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-17T23:16:51+00:00Added an answer on May 17, 2026 at 11:16 pm

    You are looking for SET field1 = CONCAT(field1,'a')

    The procedure you said you got an error for works for me:

    mysql> create database test;
    Query OK, 1 row affected (0.00 sec)
    
    mysql> create table test.Files (Name text) select 'MyFile' Name;
    Query OK, 1 row affected (0.10 sec)
    Records: 1  Duplicates: 0  Warnings: 0
    
    mysql> delimiter //
    mysql> CREATE PROCEDURE test.Rename (CurrentName Text) BEGIN UPDATE test.Files SET Name = CONCAT(Name , 'a') WHERE Name = CurrentName; END//
    Query OK, 0 rows affected (0.00 sec)
    
    mysql> delimiter ;
    mysql> call test.Rename('MyFile');
    Query OK, 1 row affected (0.00 sec)
    
    mysql> select * from test.Files;
    +---------+
    | Name    |
    +---------+
    | MyFilea |
    +---------+
    1 row in set (0.00 sec)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm pulling a row from a database and there is a date field (y-m-d).
Is there a simple database program to let me collect, sort, tag, and reguritate
Is there a way to use form fields that does not correspond to database
I need to store several date values in a database field. These values will
I have a database table (named Topics) which includes these fields : topicId name
Let's say I have DatabaseA with TableA, which has these fields: Id, Name. In
Due to a weird request, I can't put null in a database if there
Is there a database term for table or view? In my app, the table
Are there any rapid Database protoyping tools that don't require me to declare a
Are there any good database schema comparison tools out there that support Sybase SQL

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.