12-06-2004, 05:33 PM | #1 (permalink) |
beauty in the breakdown
Location: Chapel Hill, NC
|
Way to get rid of ending spaces in SQL?
I have a mySQL database I am working with that came from an Excel spreadsheet (export to CSV, import with phpMyAdmin). However, when this was done, most of the fields have long strings of spaces at the end of them. Is there any way to get rid of this? Im working with PHP--if someone could suggest a quick PHP script that would run through and chomp the spaces off the end of every cell, Id be most thankful.
__________________
"Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws." --Plato |
12-06-2004, 06:02 PM | #2 (permalink) |
Crazy
Location: Salt Town, UT
|
what you are looking for is either trim, ltrim or rtrim
Look those up in the PHP manual, and you can figure out exactly what you want to do with them. But you are basically going to have to do a bunch of database reads, and then a bunch of updates. So, no easy way I know of to do this automatically in phpMyAdmin. |
12-06-2004, 07:20 PM | #3 (permalink) |
beauty in the breakdown
Location: Chapel Hill, NC
|
Awesome, thats exactly what I was looking for. I just wrote a quick script to go through everything and run it through the rtrim() function. Thanks!
__________________
"Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws." --Plato |
12-10-2004, 11:27 AM | #5 (permalink) | |
beauty in the breakdown
Location: Chapel Hill, NC
|
Quote:
__________________
"Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws." --Plato |
|
Tags |
ending, rid, spaces, sql |
|
|