I'm getting an error when I'm trying to run this:
mysql> prepare stmt1 from "UPDATE test.users SET password = password('?') WHERE usrid = ?";
mysql> prepare stmt1 from "UPDATE test.users SET password = password(?) WHERE usrid = ?";
How can I make a prepared statement where a function takes my variable as an argument?