Non-equi joins

2015-03-25 Thread Jaime Solano
Hi guys, I'm trying to figure out a way to join two tables with non-equi conditions. Basically, something like: SELECT * FROM T1 LEFT JOIN T2 ON T1.COL1 = T2.COL2 AND T1.COL1 = T2.COL3; I'm using Phoenix 4.2.0, which doesn't support non-equi joins. Is this feature supported in version 4.3

Re: Non-equi joins

2015-03-25 Thread Jaime Solano
non-equi joins. Is this feature supported in version 4.3? If not, is there a workaround to make it work in 4.2.0? Thanks in advance! -Jaime

Re: Non-equi joins

2015-03-25 Thread Maryann Xue
ON T1.COL1 = T2.COL2 AND T1.COL1 = T2.COL3; I'm using Phoenix 4.2.0, which doesn't support non-equi joins. Is this feature supported in version 4.3? If not, is there a workaround to make it work in 4.2.0? Thanks in advance! -Jaime

Re: Non-equi joins

2015-03-25 Thread Abe Weinograd
to figure out a way to join two tables with non-equi conditions. Basically, something like: SELECT * FROM T1 LEFT JOIN T2 ON T1.COL1 = T2.COL2 AND T1.COL1 = T2.COL3; I'm using Phoenix 4.2.0, which doesn't support non-equi joins. Is this feature supported in version 4.3

Re: Non-equi joins

2015-03-25 Thread Maryann Xue
conditions. Basically, something like: SELECT * FROM T1 LEFT JOIN T2 ON T1.COL1 = T2.COL2 AND T1.COL1 = T2.COL3; I'm using Phoenix 4.2.0, which doesn't support non-equi joins. Is this feature supported in version 4.3? If not, is there a workaround to make it work in 4.2.0? Thanks in advance