![]() Join Up! 96816 members and counting! |
|
|||
php-db | 2001072
Date: 07/24/01
hello all.
i have a question - but first some background...
the standard LEFT JOIN syntax is something like this:
SELECT t1.a, t1.b, t1.c, t2.d, t2.e
i much prefer to do LEFT JOINs like this however:
SELECT t1.a, t1.b, t1.c, t2.d, t2.e
however, now i've got to convert this to an OUTER JOIN. i know that with oracle,
SELECT t1.a, t1.b, t1.c, t2.d, t2.e
and now the question....
does anyone know if there's a way with mysql to use the oracle-esqe + to do an
thanks a lot!
alvin
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
|