Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Not to select records in the many table
Message
 
 
À
20/01/2009 09:59:47
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
01375445
Message ID:
01375449
Vues:
8
>Hi,
>I have two tables with one-to-many relation.
>Is there a way - in one sql statement - to count all the records
>which have only one record relation in the "many" table.
>
>Thanks.

SQL Server:

select FieldFK from ManyTable group by FieldFK having count(FieldFk) = 1

VFP:

select FieldFK, count(*) as counts from ManyTable group by FieldFK having counts = 1

If you need to select records from the main table
select MainTable.* from MainTable 
INNER JOIN (select FieldFK, count(*) as counts from ManyTable group by FieldFK having counts = 1) OnlyOne 
on MainTable.PKField = OnlyOne.FieldFK
If it's not broken, fix it until it is.


My Blog
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform