mysql> update user set password=PASSWORD("banana") where user=root -> ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '("banana") where user=root' at line 1
mysql> set password for root@localhost=password('banana'); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'password('banana')' at line 1
root -urootと打ち、パスワード(仮にbanana)を変更しようとしたところ文法エラーがずっと出ており、パスワードが変更できません。上のように変更するコマンドを何種類か試してみたのですが全て同じエラーが出てしまいました。
知識のある方、よろしくお願いします。
環境
MacOS
mysql Ver 8.0.19 for osx10.15 on x86_64 (Homebrew)
回答2件
あなたの回答
tips
プレビュー