如何通过在WHERE子句中传递using输入来使用WHERE子句获取或比较数据
remtime=input("Enter the time :")
mycursor = mydb.cursor()
sql = "SELECT time FROM reminder WHERE date = %s"
mycursor.execute(sql,remtime)
myresult = mycursor.fetchall()
for x in myresult:
print(x)
remtime可以是今天的日期,也可以从计算机上获取
remtime = datetime.datetime.now()
请指导我如何正确编写此代码?