12-24-2008, 09:07 AM
|
#1 (permalink)
|
|
The Wanderer
Join Date: Oct 2008
Posts: 18
Thanks: 0
|
Does Count(*) consume more memory?
Just wondering does of both of them consume the same amount of memory??... let say i have 5 column in the table.
PHP Code:
Select count(*) from table
Select count(id) from table
|
|
|
|