MySQL Forums
Forum List  »  Newbie

Re: Specifying row separators
Posted by: John Zandbergen
Date: July 15, 2005 02:54AM

OK, well....
I kept on searching and trying and since no other solutions came, I'll show you my solution:

set @a:='';
select count(@a:=concat(@a, theText)) from completetext;
select @a;

which produces a count of the records, then a newline and then the texts in a long stream of characters.
Now I can delete the first line from the output and voila: I've got the complete text without row separators.

Bye,
John

Options: ReplyQuote


Subject
Written By
Posted
Re: Specifying row separators
July 15, 2005 02:54AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.