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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T12:32:37+00:00 2026-05-21T12:32:37+00:00

I have a MySQL table laid out like this: ID | Artist | Title

  • 0

I have a MySQL table laid out like this:

ID | Artist | Title

Which contains song information obtained from MP3 ID3 tags.

Now, I would like to be able to run a search on this, however the incoming data could be in a variety of formats. I’m sure you all know how ID3 tags can end up after a couple of people have had hold of them.

I have the following query which I have tried, but looking at it now, I understand completely why it doesnt bring back a result set. I’m fresh out of ideas.

SELECT CONCAT(artist, ' ',title) as trackname 
FROM sound_tracklist 
WHERE CONCAT(artist,' ',title) LIKE '%[JunkTags]Artist - Title[More Junk - www.junkwebsite.com]%'

I’d appreciate any input/direction on this.

Thanks

  • 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-21T12:32:38+00:00Added an answer on May 21, 2026 at 12:32 pm

    If you’re in MyISAM type tables, try using a FULLTEXT index:

    ALTER TABLE sound_tracklist ADD FULLTEXT INDEX (artist, title);
    

    then you can do

    SELECT artist, title FROM sound_tracklist WHERE MATCH (artist, title) AGAINST ('bach brandenburg concerto')
    

    it wouldn’t catch misspellings (“konshertoe”, anyone?), but it would search for your specified keyboards across all the fields in the index, and catch them in any order.

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

Sidebar

Related Questions

I have a MySQL InnoDB table laid out like so: id (int), run_id (int),
I have a MySQL table that looks something like this: +-----+------------+ | id |
I have a mySQL table which contains rows based on payments. Each row contains
I have a MySQL table that looks something like this: |---ID---|---COUNTER---| | 1 |
I have a MySQL table which contains the following two fields (There are others,
I have a couple of tables that are laid out like this: +------------------------------------+ +
I have mysql table like this: id, [.....], priority The priority field is used
I have mysql table 'files'. which contains following order. 1. id 2.filename 3.keywords When
I have mysql table called it as R which contains many fields, but I
I have mysql table with data like this. record will have server with total

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.