Hamza Razzaq Ответов: 1

Как мне получить идентификатор из одной таблицы и из этого идентификатора я должен получить все данные из другой таблицы


i have two tables one is job table and other is resume table.i want to fetch resume against every job record. i have job id in resume table as jid. Means a person can post many resumes against many jobs.so, how can i list all the jobs and resume one person posted.Note: i also have users table. <a href="https://i.stack.imgur.com/XiqsY.png"></a>[<a href="https://i.stack.imgur.com/XiqsY.png" target="_blank" title="New Window">job table pic</a>] and <a href="https://i.stack.imgur.com/KzKwX.png"></a>[<a href="https://i.stack.imgur.com/KzKwX.png" target="_blank" title="New Window">resume table</a>] 
and my point is to show the records as
<pre lang="text">
    ------------------------------------------------
     my job posted job |   resumes against that job |
    -------------------|----------------------------|
     job1              |   resume1                  |
                       |                            |
    ------------------------------------------------


Что я уже пробовал:

я много пробовал, но я тоже новичок, так что не могли бы вы помочь всем?

1 Ответов

Рейтинг:
2

OriginalGriff

Используйте SQL-соединение:

SELECT u.*, j.*, r.* FROM Jobs j
JOIN Resumes r ON j.ID = r.jid
JOIN Users u ON u.ID = i.uid
WHERE u.ID=3