Hi,
I want to select 1 record in table with million records, in condition
section use unique index to select record. Is any different to use SELECT vs SELECT TOP 1:
SELECT * FROM [table_name] WHERE [unique_field] = @param
vs
SELECT TOP 1 * FROM [table_name] WHERE [unique_field] = @param
Regards,
sasan.