Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Select Max -vs- Select Top
Message
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Select Max -vs- Select Top
Divers
Thread ID:
00502179
Message ID:
00502179
Vues:
78
What are the differences between these 2 queries:
SELECT * 
FROM Titre
WHERE DateInsertion = (
	SELECT MAX(DateInsertion)
	FROM Titre)
AND
SELECT * 
FROM Titre
WHERE DateInsertion = (
	SELECT TOP 1 DateInsertion
	FROM Titre
	ORDER BY DateInsertion DESC)


I found that the second syntax can be a lot faster.

Can I safely replace my SELECT MAX with SELECT TOP?
Éric Moreau, MCPD, Visual Developer - Visual Basic MVP
Conseiller Principal / Senior Consultant
Moer inc.
http://www.emoreau.com
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform