How to Convert SQL into Python Pandas? Part 2

Informula
Dev Genius
Published in
3 min readApr 24, 2023

--

Previously on How to Convert SQL into Python Pandas? Part 1, we talked about how to convert SQL statements into Pandas syntax. In this article, we will continue to discover more scenarios and operations.

Delete table “main.invoice_items_2”

-- SQL
DELETE FROM main.invoice_items_2;
# Python Pandas…

--

--