RE: Need any that can translate this

2007-01-12 Thread Tomás Abad Fernández
ra_id='".$order."' AND o.orders_id=f.pedido); Thanks all, Tomás -Mensaje original- De: Felix Geerinckx [mailto:[EMAIL PROTECTED] Enviado el: jueves, 11 de enero de 2007 19:25 Para: mysql@lists.mysql.com Asunto: Re: Need any that can translate this [EMAIL PROTECTED] (To

Re: Need any that can translate this

2007-01-11 Thread Dušan Pavlica
Temporary tables are stored in memory so they are as quick as joins. Dusan Ran napsal(a): Not necessarily to use temp tables,they are expensicve. Temp tables introduce extra disk IOs which slows down compare to using explicit JOINs which is done in memory. Here is techniques on how to rewrite

Re: Need any that can translate this

2007-01-11 Thread Ran
Not necessarily to use temp tables,they are expensicve. Temp tables introduce extra disk IOs which slows down compare to using explicit JOINs which is done in memory. Here is techniques on how to rewrite a subquery with JOINs: http://dev.mysql.com/doc/refman/4.1/en/rewriting-subqueries.html Ran

Re: Need any that can translate this

2007-01-11 Thread Felix Geerinckx
[EMAIL PROTECTED] (Tomás Abad Fernández) wrote in news:[EMAIL PROTECTED]: > I dont know why thease don't work at MySql 3.21 , anyone can help me > to make this compatible with mysql3? 3.21 is really ancient ... > > $query = "SELECT * FROM facturas WHERE pedido IN (SELECT orders_id > FROM order

Re: Need any that can translate this

2007-01-11 Thread Peter Bradley
Ysgrifennodd Tomás Abad Fernández: I dont know why thease don't work at MySql 3.21 , anyone can help me to make this compatible with mysql3? $query = "SELECT * FROM facturas WHERE pedido IN (SELECT orders_id FROM orders WHERE user_id='".$user."') ORDER BY factura_id"; Thanks for all. If

Need any that can translate this

2007-01-11 Thread Tomás Abad Fernández
I dont know why thease don't work at MySql 3.21 , anyone can help me to make this compatible with mysql3? $query = "SELECT * FROM facturas WHERE pedido IN (SELECT orders_id FROM orders WHERE user_id='".$user."') ORDER BY factura_id"; Thanks for all.