Considering this query:
insert (a, b, update_time) values (1, 1, now() - interval 10 second)
Now, I need to convert it to a parameterized statement:
insert (a, b, update_time) values (?, ?, ?)
The problem is you cannot use SQL function in the parameter. How do I write this kind of code?