Skip to content
Advertisement

Fastest way to determine if a single row exists in a another joined table, equivalent of the ANY linq function [closed]

I am trying to return a bit field for a join onto another table but where if a single record exists it returns ‘1’ and if none exist it returned ‘0’. I can’t afford to slow down the operation so it needs to be the most efficient solution possible. I am trying to achieve this on the HasRecord line in the select statement – this currently doesn’t work.

Advertisement

Answer

Subqueries with aggregation are usually tricky. You can fix the syntax issue by moving the logic to the FROM clause using APPLY:

This should be performant.

Notes:

  • Do not use NOLOCK unless you really know what you are doing. Most users do not want inconsistent data used for their results.
  • SELECT TOP is not needed with EXISTS.
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement