In SQL Server, is there some magic SQL I can preprend my SQL query to get an estimated query cost rather than the query executed?
Possibly something like the below is my best guess myself.. seems very verbose though
SET STATISTICS PROFILE ON
GO
SELECT * FROM [Account]
GO
SET STATISTICS PROFILE OFF