insensitive case match sqlalchemy

Solutions on MaxInterview for insensitive case match sqlalchemy by the best coders in the world

showing results for - "insensitive case match sqlalchemy"
Daniel
01 Sep 2020
1from sqlalchemy import func
2user = models.User.query.filter(func.lower(User.username) == func.lower("GaNyE")).first()