Bonjour,
J'ai quatre tables:
- al (cd_aluno, cd_curso, ...)
- cur (cd_curso, ...)
- hist (cd_curso, cd_aluno, cd_lectivo, ...)
- primvez (cd_curso, cd_aluno, cd_lectivo, ...)
J'ai fait un WHERE comme ça:
Mais l'éxécution ne finit pas.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 WHERE (al.cd_curso = cur.cd_curso AND cur.cd_curso = hist.cd_curso AND primvez.cd_curso = hist.cd_curso AND primvez.cd_curso = al.cd_curso)
Il y a une erreur mais je ne sais pas où...
Merci d'avance.
Partager