數據庫操做經常使用命令

MariaDB對外開放鏈接:mysql

 

CREATE USER 'root'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
FLUSH PRIVILEGES;

 

 編輯/etc/mysql/my.cnfsql

#bind-address  = 127.0.0.1

mysql查看錶結構命令,以下:

desc 表名;
show columns from 表名;
describe 表名;
show create table 表名;

use information_schema
select * from columns where table_name='表名';

順便記下:
show databases;
use 數據庫名;
show tables;

建立數據庫
create database abc;
數據庫

 

刪除數據庫:spa

DROP DATABASE 數據庫名;code

 source 文件路徑(注意要使用你所須要的數據庫)orm

 

遠程登錄MySQL,同時指定對應的端口和ip。blog

假設遠程的ip爲:10.154.0.43ip

端口爲:3341io

輸入以下命令:table

#mysql -uroot -p -h10.154.0.43 -P3341

回車後:

會須要輸入密碼。

開放mysql的外部訪問權限

 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION

相關文章
相關標籤/搜索