MySQL Forums
Forum List  »  Newbie

Re: SUBSTR() Function
Posted by: Justin Keller
Date: November 30, 2006 07:03PM

Bob,

I found my error, you had an extra comma:

return concat(left(string,47,),'...');

SHOULD HAVE BEEN:

return concat(left(string,47),'...');

WORKS LIKE A CHARM THOUGH, NICE WORK. Interesting that stored procedures arent stored under a table, but in fact are stored in information_schema -> routines.



Edited 1 time(s). Last edit at 11/30/2006 07:05PM by Justin Keller.

Options: ReplyQuote


Subject
Written By
Posted
November 22, 2006 06:02PM
November 23, 2006 12:51AM
November 30, 2006 05:20PM
November 30, 2006 06:23PM
November 30, 2006 06:38PM
November 30, 2006 06:48PM
November 30, 2006 06:57PM
Re: SUBSTR() Function
November 30, 2006 07:03PM
November 30, 2006 07:18PM


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.