Is it possible to change query after binding a par

2019-08-15 06:35发布

问题:

For example:

if I have this query: SELECT * FROM table WHERE test = ?

then I bind a parameter, can I now add something to my query?

If this is possible please give me an example in PHP.

回答1:

No it isn't possible. What do you need?



回答2:

No, it's not possible. You'll have to prepare a new query.