Ask a Question related to MySQL, Design and Development.
-
Paul Lautman #1
LEFT + LEFT vs LEFT + RIGHT
In order to do a full outer join in MySQL one must use a union.
Is there any good reason to do
SELECT ...
LEFT JOIN
UNION
SELECT ...
RIGHT JOIN
rather than
SELECT ...
LEFT JOIN
UNION
SELECT ...
LEFT JOIN
with the tables swapped on the latter LEFT JOIN?
Paul Lautman Guest
-
Use Unicode /Right to Left
I want to use Arabic / Farsi in my site but I can not change the direction of Text Box to Right to Left in flash output page , Please let me... -
Get Top and Left?
I have added a control to my form in the codebehind (eg TextBox tb1 = new TextBox();). I now need to determine the width, CSS left, CSS top... -
Dynamic Left to Right
I'm using php and trying to run a dynamic table with images. The problem I'm haveing and can't figure out is, when I run the recordset, I want the... -
#26091 [Opn->Fbk]: left()
ID: 26091 Updated by: moriyoshi@php.net Reported By: drei at porrigt dot se -Status: Open +Status: ... -
#26091 [NEW]: left()
From: drei at porrigt dot se Operating system: Linux mini 2.4.22 PHP version: 4.3.3 PHP Bug Type: MySQL related Bug... -
Jerry Stuckle #2
Re: LEFT + LEFT vs LEFT + RIGHT
Paul Lautman wrote:
You mean other than the obvious fact the columns will be swapped in the two results?> In order to do a full outer join in MySQL one must use a union.
> Is there any good reason to do
>
> SELECT ...
> LEFT JOIN
>
> UNION
>
> SELECT ...
> RIGHT JOIN
>
> rather than
>
> SELECT ...
> LEFT JOIN
>
> UNION
>
> SELECT ...
> LEFT JOIN
> with the tables swapped on the latter LEFT JOIN?
>
>
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
[email]jstucklex@attglobal.net[/email]
==================
Jerry Stuckle Guest
-
Paul Lautman #3
Re: LEFT + LEFT vs LEFT + RIGHT
Jerry Stuckle wrote:
Doesn't that depend on what is in the SELECT part of the statement?> Paul Lautman wrote:>>> In order to do a full outer join in MySQL one must use a union.
>> Is there any good reason to do
>>
>> SELECT ...
>> LEFT JOIN
>>
>> UNION
>>
>> SELECT ...
>> RIGHT JOIN
>>
>> rather than
>>
>> SELECT ...
>> LEFT JOIN
>>
>> UNION
>>
>> SELECT ...
>> LEFT JOIN
>> with the tables swapped on the latter LEFT JOIN?
>>
>>
> You mean other than the obvious fact the columns will be swapped in
> the two results?
Paul Lautman Guest
-
Jerry Stuckle #4
Re: LEFT + LEFT vs LEFT + RIGHT
Paul Lautman wrote:
Yes, but trying to swap them between the select and join clauses can become very> Jerry Stuckle wrote:
>>>>Paul Lautman wrote:
>>>>>>>In order to do a full outer join in MySQL one must use a union.
>>>Is there any good reason to do
>>>
>>>SELECT ...
>>>LEFT JOIN
>>>
>>>UNION
>>>
>>>SELECT ...
>>>RIGHT JOIN
>>>
>>>rather than
>>>
>>>SELECT ...
>>>LEFT JOIN
>>>
>>>UNION
>>>
>>>SELECT ...
>>>LEFT JOIN
>>>with the tables swapped on the latter LEFT JOIN?
>>>
>>>
>>You mean other than the obvious fact the columns will be swapped in
>>the two results?
>
> Doesn't that depend on what is in the SELECT part of the statement?
>
>
confusing.
Much clearer to keep everything in the same order.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
[email]jstucklex@attglobal.net[/email]
==================
Jerry Stuckle Guest



Reply With Quote

