I've done the following:
create table address (address varchar(50), postcode varchar(9));
create table client(id integer, name varchar(30), address address);
Now, how the hell do I get information into the address field of client? There appears to be very little in the manual dealing with PGs object features. Any pointers to places in the manual, or direct instructions would be gratefully accepted.
Cheers...
MikeA