I have a database table called shop. Every shop has a string title.
I'm now trying to get all the shops that has a title that does not start with an English alphabet character.
So now I'm doing something like:
shops = db.query(Shop)\
.filter(Shop.title.like('SOME_EXPRESSION'))\
.all()
May I know what to choose for SOME_EXPRESSION please? Do I need a regular expression here? Or some other expression?
From what I know, if I put A% there, it is getting all shops with title that starts with A.