Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Way to get rid of ending spaces in SQL? (https://thetfp.com/tfp/tilted-technology/77964-way-get-rid-ending-spaces-sql.html)

sailor 12-06-2004 05:33 PM

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.

Rawb 12-06-2004 06:02 PM

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.

sailor 12-06-2004 07:20 PM

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!

devnull 12-10-2004 07:10 AM

for future reference, the trim() function strips them from both sides at the same time.

sailor 12-10-2004 11:27 AM

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...


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

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