|
|
|
|
|
by mfjordvald
2985 days ago
|
|
count(*) doesn't do full table scan as it's not tied to specific data. It has special handling logic. The only case where it might have to do a full table scan is if you try to count() on a specific (nullable?) column without an index. |
|