MySQL Forums
Forum List  »  Microsoft SQL Server

Re: A few tricky queries to migrate
Posted by: Sean Nolan
Date: April 17, 2005 10:47AM

What version of MySql are you using? Versions before 4.1 do not support subqueries - instead of using a subquery for the derived tables, you can use
CREATE TEMPORARY TABLE Temp SELECT....
to create a temporary table and then use that in the main query.

Sean Nolan

Options: ReplyQuote


Subject
Written By
Posted
Re: A few tricky queries to migrate
April 17, 2005 10:47AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.