Hello,
imagine two tables:
– users(userid, name)
– cars(carid, userid, model)
If I execute the following query:
select c.model, u.name from cars c left join users u on u.userid = c.userid
I obtain results like this:
MODEL NAME
Toyota David
Audi John
If I change to form view and want to modify the userid of the car… it would be possible a drop down of the users names? The feature would be to select a user name from a drop down and then save changes (updating the field userid of the table cars).
Thanks for your job.
Best regards,
David.