Re: [SQL] abusing an aggregate funct - Mailing list pgsql-sql

From Thomas Good
Subject Re: [SQL] abusing an aggregate funct
Date
Msg-id Pine.LNX.3.96.981115100641.8700A-100000@admin.nrnet.org
Whole thread Raw
In response to Re: [SQL] abusing an aggregate funct  (Marc Howard Zuckman <marc@fallon.classyad.com>)
List pgsql-sql
On Sat, 14 Nov 1998, Marc Howard Zuckman wrote:

> Use a sequence to generate rec_num.  See man create_sequence.

Got it.
Thanks Marc!

> You can then use curval('sequence_name') to get the last
> sequence number generated, or if you are performing an insert:
>   insert into crtrd1 (p_key,otherdata) values (nextval('sequence_name',moredata);
>
> You could also create the table using nextval as the default
> value of p_key.  You may wish to create a unique_index on
> p_key, but nextval is guaranteed not to generate duplicates
> unless you allow it to rollover.
>
>
>
>
>
> Marc Zuckman
> marc@fallon.classyad.com
>
> _\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_
> _     Visit The Home and Condo MarketPlace              _
> _          http://www.ClassyAd.com                  _
> _                                  _
> _  FREE basic property listings/advertisements and searches.  _
> _                                  _
> _  Try our premium, yet inexpensive services for a real          _
> _   selling or buying edge!                      _
> _\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_
>


    ---------- Sisters of Charity Medical Center ----------
                   Department of Psychiatry
                            ----
    Thomas Good                          <tomg@q8.nrnet.org>
    Coordinator, North Richmond C.M.H.C. Information Systems
    75 Vanderbilt Ave, Quarters 8        Phone: 718-354-5528
    Staten Island, NY   10304            Fax:   718-354-5056


pgsql-sql by date:

Previous
From: Herouth Maoz
Date:
Subject: Re: [SQL] Incrimenting question
Next
From: Marc Howard Zuckman
Date:
Subject: Re: [SQL] abusing an aggregate funct