答案 0 :(得分:0)
我看到你有id
列。假设它是唯一的,你可以在sql查询中完成所有操作,不需要while循环。
您需要2个查询;第一个将获得最大(也可能是最小值)只有一个不同停止名称的可用id,第二个是具有第一个结果和主表的连接查询。像这样:
select * from tablename
inner join
(
select stop, max(id) as id from tablename
group by stop
)
as uniqueIDs
on tablename.id=uniqueIDs.id
答案 1 :(得分:0)
你可以尝试这个..这将帮助你从表中获取重复项
from flask_login import current_user
# ...
@app.route('/')
@login_required
def home():
return current_user.first_name