bonjour
j'ai 3 tables client,produit,achat

client(nomcl,prncn,compte)
produit(nompro,prixpro)
achat(codcl,codpro,qtachat)

je veux une constraint qui vérifier la totalité de la somme de qtachat et le compte de client.
c'est a dire il faut etre le qtachat*prixprod <compte alors pour insert dans la table achat il faut verifier cette condition

voila ma requete:

create table achat

(codcl integer,codpro integer,qt integer,

constraint vercod check (qt *(select prixpod from produit)<(select compte

from client))

je vous remerci d'avance