![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archiveRe: What is quicker as Select?
From: Erwin Moller <since_humans_read_this_I_am_spammed_too_much@spamyourself.com>
Date: Wed Jul 20 2005 - 10:48:33 CEST
bettina@coaster.ch wrote:
> I read somewhere that to gain efficiency it is advisable to avoid the
Hi,
Not sure, but maybe you misunderstood, and confused the above with SELECT *
SELECT * FROM tblusers;
is slower than
SELECT userid, username FROM tblusers;
So naming the columns is faster than using *, even if you select all
Don't expect huge benefits though.
Besides that: If you use * instead of naming the columns, and the columns
Regards,
|