MySQL Forums
Forum List  »  Other Migration

Migrating from 4.1.22 to 5.0.45
Posted by: Bob Chojnacki
Date: August 28, 2008 01:09PM

Hi,

This statement is working on MySQL 4.1.22, but not on 5.0.45:

CREATE TEMPORARY TABLE project_1
AS SELECT p.* FROM project AS p, workspace_project AS wp
JOIN int_project_1 AS i ON p.project_sid = i.project_sid AND p.revision = i.revision
JOIN workspace_project_1 AS r ON wp.project_sid = r.project_sid AND wp.revision = r.revision WHERE p.project_sid = wp.project_sid
FOR UPDATE

According to the 5.0 reference manual, it says it is correct. But I keep on getting the error:

com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: Unknown column 'p.project_sid' in 'on clause'

Any Ideas?

Options: ReplyQuote


Subject
Views
Written By
Posted
Migrating from 4.1.22 to 5.0.45
4599
August 28, 2008 01:09PM
2976
August 28, 2008 01:23PM


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.