mysqlにてユーザーを削除したいのですが、削除することが出来ません。
MariaDB [(none)]> SELECT FROM mysql.user; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'FROM mysql.user' at line 1 MariaDB [(none)]> SELECT user, host FROM mysql.user; +---------------+------------+ | user | host | +---------------+------------+ | member_user | localhost | | root | 127.0.0.1 | | root | ::1 | | | localhost | | board_user | localhost | | pma | localhost | | root | localhost | | shopping_user | localhost | +---------------+------------+ 8 rows in set (0.001 sec) MariaDB [(none)]> DROP USER member_user@ localhost; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'localhost' at line 1 MariaDB [(none)]> DROP USER member_user@localhost; ERROR 1396 (HY000): Operation DROP USER failed for 'member_user'@'localhost'
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/21 06:32
2019/09/21 06:32