I have two tables with date and id fields, and i need to join on both fields. I tried [code] JOIN t2 ON CONCAT(t1.id, t1.date)=CONCAT(t2.id, t2.date) [/code]
that works, but it is very slow. is there a better way to do this?
I have two tables with date and id fields, and i need to join on both fields. I tried [code] JOIN t2 ON CONCAT(t1.id, t1.date)=CONCAT(t2.id, t2.date) [/code]
that works, but it is very slow. is there a better way to do this?