Apparently, the MySQL function, PASSWORD(), is to be deprecated in a future release of MySQL. The dev.MySQL.com website has a write-up at https://dev.mysql.com/worklog/task/?id=6409.
That write-up speaks only of the PASSWORD() function used to add/alter one’s MySQL password. It doesn’t address the use of PASSWORD() in a SQL statement.
I use that function in a login page where my user is logging into my website. (S)he enters a username and a password, and I compare it to the hashed password that is in a table of usernames and passwords.
Can anyone lead me to documentation on how to replace PASSWORD() in a SQL query?
Thank you.
Len Jacobson