Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 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
sailor is offline  
Old 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.
Rawb is offline  
Old 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
sailor is offline  
Old 12-10-2004, 07:10 AM   #4 (permalink)
Crazy
 
Location: Bit Bucket
for future reference, the trim() function strips them from both sides at the same time.
devnull is offline  
Old 12-10-2004, 11:27 AM   #5 (permalink)
beauty in the breakdown
 
Location: Chapel Hill, NC
Quote:
Originally Posted by devnull
for future reference, the trim() function strips them from both sides at the same time.
Thanks. I saw that listed with rtrim() but the spaces came from the CSV file and were all on the right side of the string. I guess I probably should have done trim() anyways--not gonna hurt and woulda made sure...
__________________
"Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws."
--Plato
sailor is offline  
 

Tags
ending, rid, spaces, sql


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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 09:11 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54