import sqlite3
con = sqlite3.connect(":memory:")
cur = con.cursor()
cur.execute("CREATE TABLE my_test_table (id int, name varchar, phone_number varchar);")
cur.execute("INSERT INTO my_test_table VALUES (1, 'Park', '010-0000-0000');")
cur.execute("INSERT INTO my_test_table VALUES (2, 'Kim', '010-1234-5678');")
result = cur.execute("SELECT * FROM my_test_table;")
for row in result:
print(row)
cur.close()
con.close()
'Programming Language > Python' 카테고리의 다른 글
[Python] range()를 사용해야하는 이유 (0) | 2023.06.05 |
---|---|
[Python] sqlite3 이용하여 데이터 여러줄 한번에 입력하는 방법 (0) | 2023.04.06 |
[Python] dictionary를 json으로 변환하는 방법 (2) | 2023.03.21 |
[Python] 리스트의 중복값을 제거하는 방법 (0) | 2023.03.21 |
[Python] FastAPI 리스트로 입력받는 방법 (0) | 2023.03.10 |