Data Science/Python
[Python] Mysql에서 멀티 행을 Update & Insert 하는 코드
Insert multi rows. cursor.executemany() 함수를 활용하여 다중 행을 Insert하는 예제입니다. data = [ ('Jane', date(2005, 2, 12)), ('Joe', date(2006, 5, 23)), ('John', date(2010, 10, 3)), ] stmt = "INSERT INTO employees (first_name, hire_date) VALUES (%s, %s) " cursor.executemany(stmt, data) 다음과 같은 SQL실행되게 됩니다. INSERT INTO employees (first_name, hire_date) VALUES ('Jane', '2005-02-12'), ('Joe', '2006-05-23'), ('John'..
2022. 2. 16. 14:11
최근댓글