I am creating a website using Flask and SQLAlchemy. This website keeps track of classes that a student has taken. I would like to find a way to search my database using SQLAlc
Using the model query structure you could do this
Class.query.with_entities(Class.title).distinct()