Confusion between prepared statement and parameterized query in Python
Prepared statement: A reference to a pre-interpreted query routine on the database, ready to accept parameters Parametrized query: A query made by your code in such a way that you are passing values in alongside some SQL that has placeholder values, usually ? or %s or something of that flavor. The confusion here seems to … Read more