Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table full of data, where one column is full of different entries for each row, where the data is formatted like this: A:some text|B:some other text|C:some more text| I want to separate those strings of text into two columns on a new table. So the new table should have one column for A, B, C etc. and the other column will have the rest of the text in their respective rows. And there is another value (a DATETIME value) in a separate column of the first table that I would like to copy into a third column for each of the separated entries.

Let me know if this needs clarificaiton, I know it's kind of confusing and I'm pretty fuzzy with MySQL. Thanks!

share|improve this question
you can do it by writing some PHP snippet – Your Common Sense Sep 30 '10 at 8:42
I would rather do it in MySQL – RobHardgood Sep 30 '10 at 8:45
But aren't you fuzzy with it? Why not to use a tool you're more familiar with? – Your Common Sense Sep 30 '10 at 8:48
Check my answer on stackoverflow.com/questions/3821642/… – Unreason Sep 30 '10 at 8:52
I guess you're right... it would involve fewer MySQL commands. Thanks, if I can't figure out how to do it from the answers here, I'll just do that. – RobHardgood Sep 30 '10 at 8:57
show 2 more comments

2 Answers

up vote 0 down vote accepted

I think you should better write a simple script in VBScript, PHP or any other scripting language of your choice. All scripting languages provide you with string manipulation and date formatting functions. Database queries won't allow you to handle the "unexpected".

share|improve this answer

MySQL supports SUBSTRING, together with LOCATE you could probably whip up something nice, based on the pipe symbol you seem to use as a separator.

In most cases I prefer to write "convertors" in a another language than perform it directly on the database, however in this situation it looks like it's not that much data so 'might' work fine..

share|improve this answer
SUBSTRING and LOCATE will do the job just fine. If it's not much data and you are not good with MySQL, you can export to XLS, do the modifications there and re-import into MySQL. Then verify, and replace the tables when you want. – Konerak Sep 30 '10 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.