If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Separating Fields

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-05-10, 10:08
liro0917 liro0917 is offline
Registered User
 
Join Date: Apr 2010
Posts: 2
Separating Fields

I have a database that I need to get information from. However, one of the fields have been used for what should just be a product name,but it has, Product Name, Size, Strength I need each of these fields to be separate field. How can I extract the data with a SQL query with each field becoming it's own they are separated by a space. Is it possible? Any ideas? I am using MYSql to query the data


Thanks!
Liro
Reply With Quote
  #2 (permalink)  
Old 04-05-10, 10:34
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
separated by spaces? that's easy
Code:
SELECT SUBSTRING_INDEX(field,' ',1) AS product_name
     , SUBSTRING_INDEX(SUBSTRING_INDEX(field,' ',2),' ',-1) AS size
     , SUBSTRING_INDEX(SUBSTRING_INDEX(field,' ',3),' ',-1) AS strength
  FROM ...
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 04-05-10, 13:54
liro0917 liro0917 is offline
Registered User
 
Join Date: Apr 2010
Posts: 2
I tried this with all three lines and then one at a time and it wouldn't work.
Reply With Quote
  #4 (permalink)  
Old 04-05-10, 14:03
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
Quote:
Originally Posted by liro0917 View Post
I tried this with all three lines and then one at a time and it wouldn't work.
okay, dump the table, please, and a couple of lines of data
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On