import sqlite3
con = sqlite3.connect(':memory:')
cur = con.cursor()
cur.execute("CREATE TABLE my_test_table(id int, name varchar, phone_number varchar);")
data = [
(11, "Park", "010-1111-2222"),
(12, "Kim", "010-1234-5678"),
(13, "Oh", "010-8765-4321s"),
]
cur.executemany("INSERT INTO my_test_table VALUES (?, ?, ?);", data)
result = cur.execute("SELECT * FROM my_test_table;")
for row in result:
print(row)
cur.close()
con.close()
'Programming Language > Python' 카테고리의 다른 글
[Python] for, while 반복문과 else를 같이 쓰는 방법 (0) | 2023.06.05 |
---|---|
[Python] range()를 사용해야하는 이유 (0) | 2023.06.05 |
[Python] sqlite3 이용하여 데이터 입력 및 출력하는 방법 (0) | 2023.04.06 |
[Python] dictionary를 json으로 변환하는 방법 (2) | 2023.03.21 |
[Python] 리스트의 중복값을 제거하는 방법 (0) | 2023.03.21 |