Answer the question
In order to leave comments, you need to log in
How to implement the following SQL query?
The first table is "places".
id serial not null PKey,
nm text,
param1 integer not null,
param2 integer not null,
param3 integer not null,
...
param4 integer not null
id serial not null PKey,
name text
place_id integer not null FKey (place),
equi_id integer not null FKey (equi)
SELECT id FROM places WHERE param1 = 5 ... paramN = 3
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question