Home »
MCQs »
SQLAlchemy MCQs
How do you combine multiple conditions in the WHERE clause in SQLAlchemy?
20. How do you combine multiple conditions in the WHERE clause in SQLAlchemy?
- And()
- And_()
- Or()
- Or_()
Answer: B) And_()
Explanation:
And_() is used to combine multiple conditions in the WHERE clause in SQLAlchemy.