1.安裝
sudo apt-get install mysql-server mysql-client-core-5.1
2.修改字符集
vi /etc/my.cnf
在[client]下新增
default-character-set=utf8
在[mysqld]下新增
default-character-set=utf8
3.啟動,連線資料庫
shell>sudo service mysql start|stop|restart
shell>mysql -uroot -p
3.建立資料庫,修改許可權
mysql>create database xoops;
mysql>grant all privileges on xoops.* to xoops_root@localhost identified by "654321";
4.load file into
load datalocalinfile '/tmp/result.txt' into table place;
注意:這裡檔案的編碼應該和資料庫的編碼一致。我這力都是utf8.
5.執行外部檔案中的sql命令
source /home/lonfee/dropbox/nlplab/雲南/table.sql;
6.匯出資料庫的結構和資料
mysqldump -uroot -p test > /tmp/test.sql
常用MYSQL命令
常用mysql命令 啟動 net start mysql 進入 mysql u root p mysql h localhost u root p databasename 列出資料庫 show databases 選擇資料庫 use databasename 列出 show tables 建立資料...
mysql 命令常用
第一招 mysql服務的啟動和停止 net stop mysql net start mysql 第二招 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是...
常用MySQL命令
1 刪除student course資料庫中的students資料表 rm f student course students.2 備份資料庫 將資料庫test備份 mysqldump u root p test c test.txt 備份 備份test資料庫下的mytable mysqldump ...