I'm simultaneously teaching myself about Delphi's database architecture and [MS-Access] SQL. I understand how to hook together Tables and DBGrids, enjoying how changes in a grid are automagically edited, inserted, appended, updated, posted, etc. to the underlying table.
I also understand how I can open or execute an [ADO]Query and view the resulting data in a grid.
What I'm much foggier about changing Tables by editing a DBGrid displaying query results. In my online searches, it seems like all the examples I've found where query results are edited involve queries no more complex than 'SELECT ... FROM oneTable.' It seems like DBGrids are for working only with individual tables or displaying query results.
On my own, when I've tried working with query results involving two or more tables I always get an error of some sort (insufficient key column info, a missing parameter, or other messages). I feel like I'm missing something fundamental, or DBGrids are rarely used for editing anything other than individual tables. Do you have any suggestions where I might look to learn what I'm missing? The most commonly suggested links (like the db lessons at delphi.about.com) don't address the issue.
EDIT: Remou's response helps me a lot in explaining problems I've been having. So I'll edit my question slightly by generalizing beyond only MS-Access db's. Can complex queries be updated via DBGrids in other popular databases?
