I have these tables:
person(pid, name,email,phone,city)
ride(rid,pid,date,spots,start,target) [rideID, personID- the person who gives the ride, spots= open slots in the ride,]
participate(pid,rid)- person pid participates in ride rid
I have to find the query findRidesForUser (pid,date)
which gives me the contact details of all the people who suggest a ride in the specific date that starts in a city where pid lives, e.g, where ride.start=pid.city.
I'm trying to use
"SELECT person.name, person.email, person.phone, person.city \
FROM person WHERE pid=(\
SELECT pid FROM ride WHERE date='%s' AND \
ride.start= (SELECT city FROM person WHERE person.pid=pid))"
But it gives me the error: Error executing query: ERROR: more than one row returned by a subquery used as an expression