Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
cur.execute( "INSERT INTO tool1 ( USERID , USER_NAME , GROUP_NAME) VALUES (108535, ? , ? )", ( userName, groupName ) );
tool1 needs to be variable
cur.execute("INSERT INTO %s (USERID , USER_NAME , GROUP_NAME) VALUES (108535, ? , ?)" % table_name, (userName, groupName))
cur.execute("INSERT INTO {} (USERID , USER_NAME , GROUP_NAME) VALUES (108535, ? , ?)".format(table_name), (userName, groupName))
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
cur.execute("INSERT INTO %s (USERID , USER_NAME , GROUP_NAME) VALUES (108535, ? , ?)" % table_name, (userName, groupName))orcur.execute("INSERT INTO {} (USERID , USER_NAME , GROUP_NAME) VALUES (108535, ? , ?)".format(table_name), (userName, groupName))?