0

Can anyone please tell me what is UNCACHEABLE SUBQUERY in MySQL?

How it is different from DEPENDENT SUBQUERY?

By what criteria does MySQL consider a subquery an UNCACHEABLE SUBQUERY?

J0e3gan
  • 8,740
  • 10
  • 53
  • 80
glb
  • 36
  • 6

1 Answers1

0

Relevant: Cache/Re-Use a Subquery in MySQL which is also the first result on Google if you had done some research.

Shows if a query uses session variables or is a correlated subquery. A correlated subquery is a subquery that relies on variables from the primary query and can not be run independently. (So if you can't run the subquery separately, then it is correlated)

Community
  • 1
  • 1
Devon Bessemer
  • 34,461
  • 9
  • 69
  • 95