Question 18
Consider the following Model for User.
class User(db.Model): id = db.Column(db.Integer, primary_key=True) email = db.Column(db.String(100),unique=True,index=True) name = db.Column(db.String(100)) password = db.Column(db.String(100))Which of the following methods from the Flask-sqlalchemy package will behave the same as SQL query select * from User where name='Ram'?