mysql 使用例項 MySQL使用例項

2021-10-19 21:49:51 字數 1499 閱讀 8814

誤刪除了vps上的phpmyadmin,不得已翻閱了半天mysql指南,以下是一些mysql使用例項 連線管理 鏈結資料庫 mysql -h localhost -u root -p 退出資料庫 mysql>quit; 資料庫管理 檢視資料庫 mysql>show databases; 建立資料庫 mysql>create database name; 備份(

誤刪除了vps上的phpmyadmin,不得已翻閱了半天mysql指南,以下是一些mysql使用例項

連線管理

鏈結資料庫

mysql -h localhost -u root -p

退出資料庫

mysql>quit;

資料庫管理

檢視資料庫

mysql>show databases;

建立資料庫

mysql>create database name;

備份(匯出)資料庫

mysqldump -u username -p database > backup_db.sql

還原(匯入)資料庫

mysql -u username -p database < backup_db.sql

使用者管理

新增使用者

mysql>grant all privileges on databasename.* 'username'@'localhost'

->identified by 'userpassword' with grant optiton;

刪除使用者

mysql>drop user username;

修改密碼

mysql>set password for 'username'@'localhost' = password('userpassword');

乙個建立資料庫並新增專用使用者的示例:

mysql> create database wp;

query ok, 1 row affected (0.01 sec)

mysql> show databases;

| database |

| information_schema |

| mysql |

| wp |

3 rows in set (0.00 sec)

mysql> use up

error 1049 (42000): unknown database 'up'

mysql> use wp;

database changed

mysql> show tables;

empty set (0.00 sec)

mysql> grant select,insert,update,delete,create,drop

-> on wordpress.*

-> to 'wordpress'@'localhost'

-> identified by 'passwd';

query ok, 0 rows affected (0.03 sec)

MySQL使用例項

使用資料庫 use test 建表 student create table student id int,named varchar 20 not null comment 學生姓名 chinese float default 0 english float default 0 math floa...

MySQL簡單使用例項

1 建立學生表student 要求 1 屬性包括學號 sno 學生姓名 sname 年齡 age 性別 所在系 dept 2 學號為表的主碼 3 姓名非空 4 年齡預設值為18 5 性別男或女 2 建立課程表course cno,cname,credit,teacher,pcno 要求 1 屬性包括...

mysql語句使用 MySQL 基本語句的使用

1.create 建立命令 建立新資料庫 mydb create database mydb 選擇資料庫 mydb use mydb 在當前資料庫中建立資料表 table1 create table if not exists table1 fileid int not null auto incr...