Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Find child records not in parent table
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 2005
Divers
Thread ID:
01503028
Message ID:
01503032
Vues:
58
This message has been marked as the solution to the initial question of the thread.
It should be '='
select * from ChildTable where not exists (select 1 from ParentTable where ChildTable.fielda = ParentTable.fielda) 
>Thank you very much.
>
>>select * from ChildTable where not exists (select 1 from ParentTable where ChildTable.fielda != ParentTable.fielda)
>>
>>>I must be missing something very simple. I am trying to find records in the child table that have no corresponding records in the parent table. Here is what I do:
>>>
>>>
>>>select * from ChildTable join ParentTable where ChildTable.fielda != ParentTable.fielda
>>>
>>>
>>>But it does not work. TIA.
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform