Bonjour,
 
je travaille avec mysql en java
j'ai deux tables :
 
create table livraison_f(n_livraison_f int(4) ZEROFILL not null auto_increment , cle_fournisseur varchar(30), date DATE, tva double ,t_ht double, t_ttc double,primary key (n_livraison_f));
 
et
 
create table concerne_fact_f(n_facture_f varchar(30) not null , n_livraison_f varchar(30) not null primary key, cle_fournisseur varchar(30) not null);
 
et je veux obtenir les n_livraison_f qui se trouve dans livraison_f et pas dans concerne_fact_f
j'ai excecuté ;
 
SELECT n_livraison_f from livraison_f where n_livraison_f != (select n_livraison_f from concerne_fact_f );
 
mais elle me donne aucun numero alors qu'il ya
 
quesque vous me proposez
 
merci d'avance