On Thu, May 17, 2001 at 09:43:41AM -0400, D0 wrote:
> Also how do I get a listing of the sequences already created?
/ds from inside psql. To get the actual SQL that is used, start
psql with '-E'.
Cheers,
Neil
---(end of broadcast)---
TIP 3: if p
agi_db=# create table analytics_budget
agi_db-# (
agi_db(# analytics_budget_id serial not null primary key,
agi_db(# triangulation int2,
agi_db(# sales_order_id int4 not null references
sales_order(sales_order_id) default
atoi(currval('sales_order_sales_order_id'))
agi_db(# );
NOTICE: CREATE TABL