|
|
|
|
|
by _a_a_a_
1003 days ago
|
|
Depends on the complexity of the planning, but... typically planning (in mssql, am not familiar with sqlite). Parsing is linear, planning gets exponential very quickly. It's got to consider data distribution, presence or not of indexes, output ordering, presence of foreign keys, uniqueness, and lots more I can't think of right now. So, planning is much heavier than parsing (for any non-trivial query). |
|