Tagged Questions
0
votes
1answer
106 views
Postgres Object-relation database doesn't seem to function properly
I've defined my tables so:
create table device (
id serial primary key,
manufacturerid integer references manufacturer(id) on delete restrict,
model text,
price real,
usagepros text,
usagecons text
...
2
votes
3answers
663 views
Implement 1:N relation in postgreSQL (object-relational)
I'm struggling with postgreSQL, as I don't know how to link one instance of type A to a set of instances of type B. I'll give a brief example:
Let's say we want to set up a DB containing music albums ...