[SQL] problème avec une requête
bonjour,
je seche sur une requette:
Code:
1 2 3 4 5 6 7 8 9
|
select * from "ARTICLE","HOTEL","PRIX","REGION","FOURNISSEUR"
where 'ARTICLE.id_hotel'='HOTEL.id_hotel'
and 'PRIX.REFERENCE'='ARTICLE.REFERENCE'
and 'HOTEL.id_region'='REGION.id_region'
and 'ARTICLE.id_fournisseur'='FOURNISSEUR.id_fournisseur'
group by ARTICLE.REFERENCE
order by ARTICLE.REFERENCE
limit 1 offset 10; |
et voici le msg d'erreur:
Code:
1 2
|
ERROR: missing FROM-clause entry for table "article" |
qu'est ce que cela veut dire?