SQL

Filter SQL

Comments in Code

Comments in code can be used to better explain what is going on and make it more readable. They can also be used to prevent code execution. Let’s take a…

July 23, 2021 • 2 minute read

Bind an Array to SQL IN Operator Using PDO

When using PDO, binding a specific number of values to the IN operator isn’t difficult. What if the number of values isn’t a fixed number though? Maybe it’s an array…

September 14, 2020 • 2 minute read