What is better in terms of performance in T-SQL? Inner + Sub-Queries or Inner + Virtual Table?

49 Views Asked by At

I have a doubt in terms of performance.

What is better?

  1. Multiple nested Inner Joins + SubQueries with a specific WHERE clause (the table has indexes).
  2. Creating a virtual table with row data and relating it with Inner Joins?
0

There are 0 best solutions below