does anyone know how to tweak the way Access generates SQL
By writing yourself the FROM and WHERE clause ...
Fair 'nuff. I figured that was probably the only way - thanks anyway though.
Just a question if I may ask:
how the people you work with write outer joins ?
Generally it's something...
OK, I can see that INNER JOIN is the preferred method for pretty much everyone, and I take cheerio's point about the potential for 1,000,000 row tables. But, the people I work with all use a.ID=b.ID joins, and I'm expected to follow suit.
So, with due acknowledgement that it's not a...
I'm doing some queries in Access Design view, then using the generated SQL elsewhere.
Unfortunately, when Access generates SQL, the joins are all INNER JOINs, not simply "where table1.id = table2.id".
For example, I get this:
SELECT Dept.DeptID, Dept.Name, Staff.Surname
FROM Dept INNER JOIN...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.