0

我正在尝试在我的机器上测试 mysql。我确保将目录设置为我所有数据库所在的目录,但是当我尝试使用一个时它不起作用。例如,如果我在命令提示符下写:

mysql> use world;

我收到此错误:ERROR 1049 <42000>: Unknown database 'world'

4

2 回答 2

0

first you will need to create a database. Should you have something like phpmyadmin then you can use that to have a simple GUI for creating the DB, otherwise, use CREATE DATABASE.

http://dev.mysql.com/doc/refman/5.0/en/create-database.html

于 2013-05-03T08:27:50.493 回答
0

使用 Wamp 服务器创建数据库世界。然后运行此查询。

于 2013-05-03T11:07:39.710 回答