您好我正在尝试使用mysql数据库,而且我不确定如何创建数据库或表格。我上网冲浪特别是堆栈溢出1小时,并尝试了一些解决方案,但最终只有低于错误。我也忘记了密码。请帮忙
无法使用命令create user' user1' @' localhost';
创建新数据库Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.6.19 MySQL Community Server (GPL)
Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (0.00 sec)
mysql> CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER pr
ivilege(s) for this operation
mysql>
mysql> create user 'user1'@'localhost';
ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation
mysql>
答案 0 :(得分:2)
您需要先使用命令USE(例如USE test;
)选择要在哪个数据库中执行更改。
要创建数据库,请使用以下语法CREATE DATABASE dbName;
用于创建表格,语法为CREATE TABLE pet (name VARCHAR(20), owner VARCHAR(20), species VARCHAR(20), sex CHAR(1), birth DATE, death DATE);
(取自mysql文档)
我不知道您连接到mysql数据库的用户,但如果您没有任何权限,则创建新用户并授予新用户相应的权限
答案 1 :(得分:0)
由于您忘记了密码,因此必须将其恢复。 实际上,很可能您可以使用“root”帐户访问它而无需密码。
根据“MySql参考”:
“如果您从未为MySQL设置root密码,则服务器不会 需要密码才能以root身份连接“
无论如何,请在this链接阅读更多内容。