Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Quickest way to see if a record exists
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Versions des environnements
SQL Server:
SQL Server 6.5 and older
Divers
Thread ID:
01348134
Message ID:
01392023
Vues:
60
Unfortunately this page doesn't work for me anymore.

>FYI EXISTS Subqueries: SELECT 1 vs. SELECT *
>
>>There is no need some field to be Primary key to be used in WHERE clause :-).
>>So if you want to know if there are records where MyId is equal to some value your select is right. But if you want only to know if these records exsits but you don't need to have recordset based on these records you could use EXISTS() function. It stops execution after the first records is found, so that is the quickest way:
>>
>>
>>IF EXISTS (select * from mytable where myid =lcid)
>>    BEGIN
>>         print 'Record(s) exists'
>>    END
>>ELSE
>>    BEGIN
>>         print 'No record exists'
>>    END
>>
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