Hi Monks,
I'm parsing data from a mysql database, and noticed that when I order by the 'item' column, I get 2 alphebetical lists.
The reason appears to be that mysql is taking my tab delimited text import and encapsulating with quotes any cells that contain a comma. I can regex out the comma for displaying the results, but thats after the sql query has done its thing, and it seems wasteful to redo the whole sort process in perl after the mysql engine has already done that.