Could anyone explain the difference between filter and filter_by functions in SQLAlchemy? I am confused and can't really see the difference. Which one should I be using?
|
|
||||
|
|
|
The same can be accomplished with
but you can also write more powerful queries containing expressions like
|
|||||||||||
|
|
We actually had these merged together originally, i.e. there was a "filter"-like method that accepted *args and **kwargs, where you could pass a SQL expression or keyword arguments (or both). I actually find that a lot more convenient, but people were always confused by it, since they're usually still getting over the difference between |
|||||
|
|
|
|||||||||||
|