Possible Duplicate:
Difference between JOIN and INNER JOIN
Did read this....but there is a difference if you look at my question. I have asked why DOES NOT THIS WORK......that link has all the explanations only.......
String sql ="SELECT s.text, s.postdate,"+
"d.Fname FROM Wall s " +
"join Kid_Register d on d.id=s.fromsl";// this works
String sql ="SELECT s.text, s.postdate,"+
"d.Fname FROM Wall s " +
"inner join Kid_Register d on d.id=s.fromsl"; // this does not
Can I know the reason why? As far as my research on the net it says that inner join and join are the same and as one put in SO the diff is just the "syntactical sugar" part....