Jump to content
Fórum Script Brasil
  • 0

Resolvido - ERRO: 1066 Not Unique table/alias


Lucas Conceição

Question

EDIT. Resolvido o problema pessoal, o problema era com o lugar que estava colocando os alias

SELECT C.nome_categoria as Categoria,
       TS.nome_software as Software,
       TAREFA.tarefa_desc as Tarefa, 
       TAREFA.prioridade as Prioridade,
       TAREFA.duracao as Duracao, 
       TAREFA.status as Status
FROM CATEGORIA C
INNER JOIN((TAREFA INNER JOIN TIPO_SOFTWARE ON TIPO_SOFTWARE.id = TAREFA.id_software)
INNER JOIN HELPDESK INNER JOIN TIPO_SOFTWARE AS TS ON HELPDESK.id = TS.id_helpdesk) ON
C.id = HELPDESK.id_categoria;
Boa tarde pessoal, Estou tentando fazer um Inner Join entre 4 tabelas, porém estou recebendo o erro conforme título do Tópico, porém ainda não sei porque está acontecendo isso, As tabelas que tenho é mais ou menos assim Tabela A: id Tabela B: id, id_A Tabela C: id, id_B Tabela D: id, id_C Nome das tabelas é respectivamente: CATEGORIA, HELPDESK, TIPO_SOFTWARE, ATIVIDADE Tenho essa consulta:
SELECT CATEGORIA.nome_categoria as Categoria,
       TIPO_SOFTWARE.nome_software as Software,
       Tarefa.tarefa_desc as Tarefa, 
       Tarefa.prioridade as Prioridade,
       Tarefa.duracao as Duracao, 
       Tarefa.status as Status
FROM CATEGORIA
INNER JOIN((HELPDESK INNER JOIN TIPO_SOFTWARE ON HELPDESK.id = TIPO_SOFTWARE.id_helpdesk)
INNER JOIN TAREFA INNER JOIN TIPO_SOFTWARE ON TIPO_SOFTWARE.id = TAREFA.id_software) ON
CATEGORIA.id = HELPDESK.id_categoria;

Se eu coloco pra executar aparece ERROR 1066: Not Unique table/alias.

Alguém saberia me ajudar,

Obrigado,

Lucas.

Edited by Lucas Conceição
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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...