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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:40:04+00:00 2026-05-14T06:40:04+00:00

I want to create a new column in a MYSQL table that has Fn

  • 0

I want to create a new column in a MYSQL table that has Fn Ln instead of Ln, Fn. Most of my data is printed Fn Ln.

Another idea is to incorporate a string function each time there is an output (php based) but that seems to waste resources. Finally, I couldn’t find the syntax (loop or foreach) for my php function anyway.

Here is the working php function that I got from a previous post:

   $name = "Lastname, Firstname";
    $names = explode(", ", $name);
    $name = $names[1] . " " . $names[0];
  • 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-14T06:40:05+00:00Added an answer on May 14, 2026 at 6:40 am

    You can use the mysql function SUBSTRING_INDEX to get a portion of a string up to an specified number or occurrences.

    Make sure to change anything I’ve prefixed with a $ to what you want it called

    # Add new column
    alter table $TABLE add $newField varchar(40); # or something like that
    
    # Populate new data
    update $TABLE set $newField = CONCAT(
      SUBSTRING_INDEX(SUBSTRING_INDEX($oldField,',',2),',',-1),
      ' ',
      SUBSTRING_INDEX($oldField,',',1)
    );
    

    That splits the name field on , and puts the second part first, in the new field you created.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a mysql table called books that has a votes column, and another
I want to programmatically create a new column in an MS Access table. I've
I want to create a new row in my database on a table that
How will I create a new/virtual column after pulling data from source before putting
I am using MySQL 5.0. I have table with following structure and data. CREATE
MYSQL Database: I have a table of data that I need to put into
I have one mysql table 'alfa' that will contain the primary key of another
I want to create new node of BeanTreeView, and when I add some node
I'm using Visual Basic 9 (VS2008) I want to create new Tabs as and
I want to create a new net.tcp://localhost:x/Service endpoint for a WCF service call, with

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.