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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T15:20:16+00:00 2026-06-18T15:20:16+00:00

I have a MySQL 5 database table field media like set(‘audio’,’video’,’photo’) What i need

  • 0

I have a MySQL 5 database table field media like set('audio','video','photo')
What i need to do, is in single SELECT statement prefix it’s values with some custom string and space after it, if any of the values are present. For example:

audio,video becomes mediaaudio mediavideo

photo becomes mediaphoto

The specifics of the data does not require an external relationship table to be made for corresponding values, so set is sufficient for the current task. I need to prefix them to uniquely identify them later in search results.

Real example:

id media

1 audio,video

2 audio

3 video

4 photo,video

5

Expected result:

id media

1 mediaaudio mediavideo

2 mediaaudio

3 mediavideo

4 mediaphoto mediavideo

5

  • 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-18T15:20:17+00:00Added an answer on June 18, 2026 at 3:20 pm

    Here’s one way to do it with INSTR, CONCAT, REPLACE and LENGTH:

    SELECT ID, 
      CASE WHEN INSTR(YourField, ',') > 0
        THEN CONCAT('media', REPLACE(YourField, ',', ' media'))
        WHEN LENGTH(YourField) > 0
        THEN CONCAT('media', YourField) 
        ELSE ''
       END media
    FROM YourTable
    

    And the Fiddle.

    Good luck.

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

Sidebar

Related Questions

I have a VARCHAR field (in table of a MySQL database) where I need
I have a MySQL Database. In it's table is a field called 'itm_name' I'm
I have a table with a field of type date within a MySQL database.
I have a calendar table in my MYSQL database with one field named datefield
I have an customer invoice table in my MySQL database with a DECIMAL(10,2) field
I have 5 tables in my Mysql database with t1 with field name like
I have a MySQL database table called Participant that looks something like this: (idParticipant)
I have mysql database structure like below: CREATE TABLE test ( id int(11) NOT
I have a MySQL database where the table was set up to store the
I have a MySQL database table that has a VARCHAR field storing a date

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.