Hi.

On Wed 2002-07-24 at 09:46:03 +0100, [EMAIL PROTECTED] wrote:

> As I understand it an ANSI92 join is written as;
> 
> SELECT b.columnA
> FROM tableB AS b JOIN ON tableC AS c ON b.id = c.id

Ah. Okay. Was not aware that this was new in ANSI92.

> Whereas the 'old' style would be;
> 
> SELECT b.columnA
> FROM tableB AS b, tableC AS c
> WHERE b.id = c.id
> 
> Personally I find the former much easier to read though not sure about
> the practical differences between them when the statements are executed.

AFAICT, there should be no differences on execution speed.

Greetings,

        Benjamin.


-- 
[EMAIL PROTECTED]

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to