Tagged Questions
0
votes
0answers
65 views
Unexpected behavior of _and, & with filter
I'm getting some un-anticipated results from a query i'm running on my Postgres. Its worth noting i get the same results using sqlalchemy's _and function.
StackTrace:
In [49]: question_option = ...
0
votes
1answer
77 views
SQLAlchemy and filtering polymorphic queries
I've the classes Node and Leaf (Node) as shown below:
class Node (db.Model):
__mapper_args__ = {'polymorphic_identity':'node', 'polymorphic_on':'type'}
id = db.Column (db.Integer, ...
0
votes
1answer
214 views
SQLAlchemy - Querying Multiple Tables and Combining Results
Answer no longer needed.
I have two tables as follows in my MySQL database:
**Child**
id
name
parent_id
**Parent**
id
name
What I want to do is query both tables but return unique results (no ...
2
votes
2answers
2k views
sqlalchemy exists for query
How to check that data in query is exists?
For example:
users_query = User.query.filter_by(email='x@x.com')
How I can check that users with that email exists?
Now i check this with
...