Jump to content
Fórum Script Brasil
  • 0

Inner Join entre 4 tabelas


rapha_e

Question

alguém pode me ajudar estou tentando fazer um join entre 4 tabelas. são elas:

pessoa=>id_pessoa; nome

sexo=> id_sexo; sexo

cidade=> id_cidade,; cidade

curso=> id_curso;curso

estou tentando assim :

$seleciona=mysql_query(" SELECT

pessoa.id,

pessoa.nome,

curso.id_curso,

curso.curso,

sexo.id_sexo,

sexo.sexo,

cidade.id_cidade,

cidade.cidade

FROM pessoa

INNER JOIN( sexo ON curso.id_sexo=pessoa.id_sexo)

INNER JOIN( cidade ON cidade.id_cidade=pessoa.id_cidade)

INNER JOIN (curso ON curso.id_curso=pessoa.id_curso) ORDER BY nome")or die(mysql_error());

Aguardo ajuda.

Desde já agradeço.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Faça assim :

$seleciona=mysql_query(" SELECT
    p.id,
    p.nome,
    c.id_curso,                
    c.curso,
    s.id_sexo,
    s.sexo,
    ci.id_cidade,
    ci.cidade
FROM pessoa p
INNER JOIN sexo s ON s.id_sexo = p.id_sexo
INNER JOIN cidade ci ON ci.id_cidade = p.id_cidade
INNER JOIN  curso c ON c.id_curso = p.id_curso  
ORDER BY p.nome") or die(mysql_error());

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...