Wilbert Enserink wrote:

> Later on in my script I'm calling the value of this column with php.
> $query="select * from tblA LEFT JOIN ....";

it's been said over and over :) NEVER EVER write a select * query...

use syntax

Select
    a.column1,
    a.column2,
    b.column1
from
    tbl1 as a,
    tbl2 as b
where
.....

and you'll never get in trouble :))

Alberto
Kiev


-- 


@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@-_=}{=_-@

LoRd, CaN yOu HeAr Me, LiKe I'm HeArInG yOu?
lOrD i'M sHiNiNg...
YoU kNoW I AlMoSt LoSt My MiNd, BuT nOw I'm HoMe AnD fReE
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is
tHe TeSt, YeS iT iS
ThE tEsT, yEs It Is.......


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to