我正在使用这个功能:
def checker(name,s)
MY_T = "SELECT count(*) FROM `"+session.SessionInfo.Name where EventName='"+name+"'"
我想检查表是否存在,我该怎么做?我看到一些例子使用:XXXX.execute()
这是什么意思?
这是我看到的:
query = cursor.execute("""SELECT count(*) FROM scan WHERE prefix = %s and code_id = %s and answer = %s and station_id = %s""",
(prefix, code_id, answer, station,))
if query != 1:
例如,我尝试打印 MY_T 以查看它是否返回 -1 但它只是打印"select count (*)...... "
我怎样才能检查它?任何帮助将不胜感激。