Hello All, Please help. I know there is a simple answer for this but I don't know it.
I'm trying to create a new user account in mysql. Below is the what
I entered.
mysql> use mysql;
Database changed
mysql> INSERT INTO user (host, user, password, select_priv,
insert_priv, update_priv) VALUES ('localhost', 'php', PASSWORD
('mypass'), 'Y', 'Y', 'Y');
But I get the following error.
ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value
What should I do?
