sql - Mysql query for selecting friends -
i trying solve "issue", still without success. i'd achieve is, create query select friends of specific actor. let's want list of first name, last name , age of jason statham's friends.
below image of tables. ps: tables correctly organized ? (especially foreign keys) in advance
does you're looking for?
select actors.first_name, actors.last_name actors actors.login in ( select friendslist.loginf friendslist friendslist.logina = 'xstad' )
Comments
Post a Comment