标签: html mysql python-3.x
我想创建并发送一封包含MYSQL查询结果的电子邮件。有关感兴趣的查询,请参见下文。
'''query=('select * from mydata where Status > 600') cur.execute(query) myresult=cur.fetchall() final_result= tabulate(myresult, headers=['ID_name','Status'], tablefmt='psql') print(final_result) '''
答案 0 :(得分:0)
我认为这类问题已经得到解答。尝试寻找找到的here和here