jai un probleme voici mes tables:
client(refcli, nomcli, prenomcli, reflivre)
livre(reflivre, titre)
je cherche a afficher les titres de la table LIVRE pour lesquel livre.reflivre est egal a client.reflivre avec un nomcli et un prenoncli particulier
si vous pouvez m'aider SVP c urgent et j'y arrive pas MERCI a TOUS
9 janv. 2004 à 12:41
from livre a,
client b
where a.reflivre = b.reflivre
and b.nomcli = 'XX'
and b.prenomcli = 'YY'
sans la virgule après b, bien sur...