I have a query like this
SELECT * from table1 t1,table2 t2, OUTER table3 t3
This works in Informix database but when I use it as Hsql then it is not able to find this
“OUTER” keyword only… How to do outer join in Hibernate?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
HSQLDB supports Standard SQL syntax, which is different from your Informix syntax query. Some examples of this syntax:
You should adapt your query to the Standard syntax.
The query you reported in comments is translated to Standard SQL this way:
Note you need a condition for the question marks. For example the id in STUDENTSFEES which needs to be equal to the id in STUDENTSSPORTS. sf.some_id = ss.some_id