table1: col1,col2 and col3 from Database1. Table2:col4,col5 and col6 from Database2. When I was using equal inner, I got no record. After I used left outer join, I got records and all values from col1, col2 but any values from col4, col5. I want list col1, col2, co4, col5 in my report. (BTW, I...