On Tue, 16 Oct 2001, Anthony Bouvier wrote:
> I can create an AGGREGATE but from what I can tell, the format of the
> sfunc can only have two parameters like so:
>
> sfunc_name(type,type)
>
> Where the first parameter is what was passed before, and the second
> parameter is the 'new' info to do s
I have a sub in a Perl script that loops execution the following
statement:
SELECT url,name FROM links
And formats it like so:
$name
A variable ($link_list) is in the loop, holding the concatenated last
statement with the new one.
I would rather do this with FUNCTIONS (and/or AGGREGATES).