Hello,
I am trying to move a client from Ms SQL to MySQL; however I have a big problem.
There is this select sentence that should be carried out for a specific task and it works fine in MsSQL. I tried it in MySQL but to no avail!
The SQL sentence I am trying to run is something as below:
SELECT field1, field2, (SELECT field4 FROM table4 WHERE ...) as field3 FROM table_name WHERE ....
The inner select in paranthesis does not work and give a syntax error. I am told that this works in Oracle too and that it is in the ANSI SQL standard.
I am desperate to find a solution. Any help would be highly appreciated.
Thanks...