I want to join the 2 tables so that I can link 2 sets of fields.
Current script:
$query = "SELECT movie_name, people_fullname
FROM movie
LEFT JOIN people
ON movie_leadactor = people_id
ORDER BY movie_name";
What I want to do:
$query = "SELECT movie_name, people_fullname
FROM movie...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.