Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Suposto problema com INNER JOIN


matheussoli

Question

Esta é a descrição do meu problema:

Em localhost funciona perfeitamente. Na hospedagem não.

Minha consulta

SELECT alunos.aluno_nome, cursos.nome_curso, modulos.nome_modulo FROM matricula_pl
INNER JOIN cursos ON matricula_pl.curso = cursos.cod_curso
INNER JOIN modulos ON matricula_pl.modulo = modulos.cod_modulo
INNER JOIN alunos ON matricula_pl.matricula = alunos.aluno_matricula
WHERE matricula_pl.periodo_letivo = '2015'
AND matricula_pl.curso = '2'
AND matricula_pl.modulo = '10'

Na hospedagem aparece a seguinte mensagem:

PHP Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1104 The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay'

Alguém pode me orientar no que pode estar acontecendo?

Obrigado

RESOLVIDO. O problema estava nos índices da tabela.

Valeu!

Edited by matheussoli
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Guest
This topic is now closed to further replies.


  • Forum Statistics

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