“KEFT Join” Works the Same as “Left Join” in MySQL 5.7.19
Just found out "KEFT JOIN" works the same as "LEFT JOIN" in MySQL 5.7.19 and I just noticed it saved me a 3AM call out last night
Anyone else have incidents where bugs actually helped?
Anyone else have incidents where bugs actually helped?
1 comment
[ 4.4 ms ] story [ 8.7 ms ] thread"select * from table1 keft join table2 using (somecol)" is an inner join of table1 and table2, but table1 is assigned the alias "keft", because "AS" between table and its alias is optional.