NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Cross JOIN (Score:1)
I think I must review what the "CROSS JOIN" does in my SQL manual...
Thanks for sharing.
Re:Cross JOIN (Score:1)
CROSS JOINis simply an explicit way to request the standard cartesian product.You can write the exact same query like this:
I just prefer the newer syntax because there are few cases where you’d deliberately ask for a cartesian product, and with the old syntax it’s not clear whether you did so or merely forgot the join condition. The new explicit syntax documents your intent.
Reply to This
Parent