在Windows下,假如你的MySQL裝在 D:\MySQL
創(chuàng)新互聯(lián)網(wǎng)站建設(shè)服務(wù)商,為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計(jì)服務(wù),網(wǎng)站設(shè)計(jì),網(wǎng)站托管、服務(wù)器租用等一站式綜合服務(wù)型公司,專業(yè)打造企業(yè)形象網(wǎng)站,讓您在眾多競爭對手中脫穎而出創(chuàng)新互聯(lián)。
就可以這樣:
先切換到它的bin目錄 ? ?cd D:\MySQL\bin\
D:\MySQL\binmysql -u root -p
接著輸入你的root密碼
接下來你就可以創(chuàng)建數(shù)據(jù)庫、創(chuàng)建用戶、創(chuàng)建修改表之類的操作(常用命令如下)。
查看現(xiàn)有數(shù)據(jù)庫
mysql show databases;
創(chuàng)建數(shù)據(jù)庫(假如數(shù)據(jù)庫名為 mydb)
mysql create database mydb;
刪除數(shù)據(jù)庫(假如數(shù)據(jù)庫名為 mydb)
mysql drop database accounts;
使用數(shù)據(jù)庫(假如使用數(shù)據(jù)庫 mydb)
mysql use mydb;
第一種情況是:
root:/#mysql -u -p
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15 to server version: 5.0.91-enterprise-gpl
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (1.05 sec)
mysql
mysql
mysql
mysql create database company
- ;
ERROR 1044: Access denied for user ''@'localhost' to database 'company'
mysql
第二種情況是:
root:/#mysql -u root -p
Enter password: (我輸入了密碼)
ERROR 1045: Access denied for user 'root'@'localhost' (using password: YES)
root:/#
only13loving
采納率:51%12級2013.09.22
試這兩個(gè)
mysql -h 127.0.0.1 -u root -p
mysql -h servername -u root -p
在mysql 中建立引用約束的時(shí)候會出現(xiàn)MySQL ERROR 1005: Can't create table (errno: 150)的錯(cuò)誤信息結(jié)果是不能建立 引用約束。
出現(xiàn)問題的大致情況
--1、外鍵的引用類型不一樣,如主鍵是int外鍵是char
--2、找不到主表中引用的列
--3、主鍵和外鍵的字符編碼不一致,也可能存儲引擎不一樣
-- CREATE TABLE act_id_user(ID_ INT(20)); 是不可以的
CREATE TABLE act_id_user(ID_ varchar(20)); -- 是可以的