[sqlalchemy] Re: What is the SQLAlchemy terminology for ..?

2015-06-11 Thread Jonathan Vanasco
Your question and example are both a bit confusing. I'll try to impart some knowledge that can help you re-focus an ask. 1. In your example, `Session.query(CaseTestInstance)` will return all the data in the `cases_test_instance` table. 2. Recursive Queries can mean a few things (and is often

[sqlalchemy] Re: What is the SQLAlchemy terminology for ..?

2015-06-11 Thread Tony C
Thanks Jonathan, Your question and example are both a bit confusing Yes-as I mentioned in my post, and I am new to databases and SQL,so I don't know how to ask for what I'm looking for. After creating the relationship that you mentioned, my queries now pull the data from the referenced tables.