Le 11/11/2010 19:53, Vojtěch Látal a écrit :
> Hi,
> just a little thing: I wanted to try inheriting. So I made a table
> "del" which inherits from table "vehicles".
>
> Create script follows:
> -- Table: del
>
> -- DROP TABLE del;
>
> CREATE TABLE del
> (
> -- Inherited from table del: id inte
Hi,
just a little thing: I wanted to try inheriting. So I made a table
"del" which inherits from table "vehicles".
Create script follows:
-- Table: del
-- DROP TABLE del;
CREATE TABLE del
(
-- Inherited from table del: id integer NOT NULL DEFAULT
nextval('vehicle_id_seq'::regclass),
-- Inherite