I was looking at how does the query works basically through EXPLAIN keyword which gives you an execution plan about what happens in order when you execute the query. So I was wondering if there is some way in which we can change the execution plan for our query (more specifically to scan the table in our own customized way on a particular query rather than its own default scan)
I was looking at execution plan for my query how its working and wanted to run it in my own way but haven't been able to find anythin on that.