Hi all,
I am trying to migrate an application from oracle to mysql and have trouble getting the join predicates work. I am using MySql 4.1 alpha version.
This is the query i want to use:
SELECT *
FROM
requirement r,
ref_source s
WHERE
r.project_id = 0 AND
r.source_code = s.source_code (+);
I see examples of such queries on the MySql site but cannot seem to make it work. The datatype of the source_code columns in both the tables are the same char(2).
Any suggestions on what i am missing?