如何获得这些 SQL 语句序列?去工作?我以前只处理过单个select
语句并且cursor.execute
工作得很好。我现在不知道在这种情况下该怎么办。我得到的错误是format requires a mapping
args = {
"timepattern" : timepattern,
"datestart_int" : datestart_int,
"dateend_int" : dateend_int
}
sql = ( "CREATE TEMPORARY TABLE cohort_users (user_id INTEGER); "
"INSERT INTO cohort_users (user_id) "
"SELECT id FROM users WHERE registered_at BETWEEN %(datestart_int)s AND %(dateend_int)s; "
"SELECT 1, FROM_UNIXTIME(%(dateend_int)s, %(timepattern)s) "
"UNION ALL "
"SELECT (COUNT(DISTINCT x.user_id)/(SELECT COUNT(1) FROM cohort_users)), "
" FROM_UNIXTIME((%(dateend_int)s + (7 * 24 * 60 * 60)), %(timepattern)s) "
"FROM cohort_users z INNER JOIN actions x ON x.user_id = z.id "
"WHERE x.did_at BETWEEN (%(datestart_int)s + (7 * 24 * 60 * 60)) AND (%(dateend_int)s + (7 * 24 * 60 * 60)) "
"DROP TABLE cohort_users; "
)
cursor.executemany(sql,args)