반응형
[ Delete ]
변수 1개를 활용하여 삭제
query = """Delete from Laptop where id = %s""" # row to delete laptopId = 6 cursor.execute(query,(laptopId,)) connection.commit() print("Record Deleted successfully") |
여러행을 삭제 - 리스트 안에 튜플
cursor = connection.cursor() query = """Delete from Laptop where id = %s""" records_to_delete = [(6,),(5,)] cursor.executemany(query,records_to_delete) connection.commit() print("Record Deleted successfully") |
반응형
'BackEnd > Python-Flask' 카테고리의 다른 글
[백엔드] Flask: recipe 프로젝트: API 설계, 새로운 데이터 작성: POST (0) | 2022.06.27 |
---|---|
[백엔드] Flask: recipe 프로젝트: 준비/insert 순서 (0) | 2022.06.27 |
[백엔드] Flask: Python 으로 DB 수정, Update (0) | 2022.06.26 |
[백엔드] Flask: Python에서 DB에 데이터 insert (0) | 2022.06.26 |
[백엔드] Flask: Python으로 DB접속/이용순서 (0) | 2022.06.26 |