In SQL systems other than Postgres, such as MySQL for instance, prepared statements can use question marks as a placeholder for data in prepared statements. I am not sure how to create placeholders in Postgres. I did some research - I found some posts on Stackoverflow and tutorials on Postgres that suggested I used "$1, $2" or use "%s, %l" as a placeholder. However, I keep getting errors. Does ...