The first one is:
When I use a SELECT statement in MySQL to return rows in a table, I get a grandtotal count at the bottom when the console returns the specified rows. I am selecting rows INTO OUTFILE and I do not want the grandtotal part included in the txt file. Is there anyway to get rid of it?
The second one has to do with PERL, so hopefully one of you PERL gurus will know the answer:
I am concatenating text in the code as follows:
Code:
@user_name[$i] = @user_name[$i].1;
I simply want to attach a 1 to the end of the user_name, but when I do it leaves a space between the user_name and the 1, so it looks like this:
bperry 1 instead of bperry1
Is there a way to get rid of that space?
Brian