Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Two subsets to compare from
Message
De
13/01/2017 09:40:22
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Two subsets to compare from
Versions des environnements
SQL Server:
SQL Server 2014
OS:
Windows 8.1
Network:
Windows Server 2012
Divers
Thread ID:
01646648
Message ID:
01646648
Vues:
54
I have a select such as:
SELECT Invoice.Numero
 FROM Invoice
 WHERE Invoice.NoClient IN (5,44,52,54,55,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,69,74,75,76,77,78,80)
Then, we could have another one such as:
SELECT Invoice.Numero
 FROM Invoice
 WHERE Invoice.NoClient2 IN (79)
I need to combine both selects into one which would return only the records where Invoice.NoClient and Invoice.NoClient2 match in both.

For example, in the example above, none would be returned.

However, if I would have this:
SELECT Invoice.Numero
 FROM Invoice
 WHERE Invoice.NoClient IN (5,44,52,54,55,57,58,59,60,61,62,63,64,65,66,67,68,70,71,72,73,69,74,75,76,77,78,80)
Then, we could have another one such as:
SELECT Invoice.Numero
 FROM Invoice
 WHERE Invoice.NoClient2 IN (5,44,79)
Then, as 5 and 44 match both, this means I would have some results.

What would be the simplest way to achieve that?
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform