To create a parameterized query, you use placeholders in the SQL statement, often denoted by ________.

  • dollar signs
  • exclamation marks
  • percent signs
  • question marks
In parameterized queries, placeholders are typically denoted by question marks (?). These question marks serve as positional markers for where the input data should be inserted into the SQL statement. When executing the query, the actual values are bound to these placeholders, ensuring proper sanitation and preventing SQL injection attacks.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *