Facebook
From Gamboge Terrapin, 3 Years ago, written in Plain Text.
">

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

from

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

- view diff
Embed
Download Paste or View Raw
Hits: 54
  1.   SELECT aluno.primeiro_nome,
  2.          aluno.ultimo_nome,
  3.                  COUNT(aluno_curso.curso_id) numero_cursos
  4.     FROM aluno
  5.         JOIN aluno_curso ON aluno_curso.aluno_id = aluno.id
  6. GROUP BY 1, 2
  7. ORDER BY numero_cursos DESC
  8.    LIMIT 1;
  9.    
  10.   SELECT curso.nome,
  11.                  COUNT(aluno_curso.aluno_id) numero_alunos
  12.     FROM curso
  13.         JOIN aluno_curso ON aluno_curso.curso_id = curso.id
  14. GROUP BY 1
  15. ORDER BY numero_alunos DESC
  16.    LIMIT 1;
  17.