MySQL資料庫的基本用法

2021-07-31 07:26:48 字數 1371 閱讀 8891

mysql資料庫的用法;

1. 開啟和關閉windows服務:

net start 《服務名》

net stop 《服務名》

2.登入mysql資料庫:

mysql -h c:\hello\aa.sql(匯出的路徑)

2.使用客戶端匯出,或者複製sql語句

6.資料匯入:

1.使用dos視窗:\. 空格 拖進來需要匯入的檔案

2.使用客戶端直接執行匯入的sql語句

7.mysql使用者的設定:

1.新增使用者:需要在user表中新增資料,並且新增許可權:

insert into user 

(host, user, password, 

select_priv, insert_priv, update_priv) 

values ('localhost', 'guest', 

password('guest123'), 'y', 'y', 'y');請注意使用mysql提供的 password() 函式來對密碼進行加密。

8.檢視:

1.建立檢視:create view v_view1(id, name, ***, age,department) as select id, name, ***, age,department from learning.t_employee

2.檢視檢視:select * from v_view1

9.將查出來的資料新增到新錶中:

10.索引:

1.create index indexname on mytable(username(length)); 基本索引

2.alter mytable add index [indexname] on (username(length));修改表結構

3.create table mytable(  

id int not null,   

username varchar(16) not null,  

index [indexname] (username(length))  

); 建立表的時候直接指定

4.刪除索引:drop index [indexname] on mytable; 

11.事務:

1.begin或start transaction;顯示地開啟乙個事務;

2.commit;也可以使用commit work,不過二者是等價的。commit會提交事務,並使已對資料庫進行的所有修改稱為永久性的

3.rollback;有可以使用rollback work,不過二者是等價的。回滾會結束使用者的事務,並撤銷正在進行的所有未提交的修改

4.set autocommit=0 禁止自動提交;set autocommit=1 開啟自動提交

mysql資料庫基本用法

最近學習mysql,簡單的記錄一下 一 將資料表user info從資料庫db a複製到資料庫db b 注意 mysql語句是在資料庫db b中執行 1 資料庫db b中沒有資料表user info 表名可以根據需要設定,不需要跟a中表名一致 建立表b user並複製表user info的表結構,使...

MySQL資料庫基本用法

mysql u root p u 使用者名稱 h後面寫要連線的主機ip位址 u後面寫連線的使用者名稱 p回車後寫密碼 回車後輸入密碼,當前設定的密碼為toor建立資料庫 create database 資料庫名 charset utf8 刪除資料庫 drop database 資料庫名 切換資料庫 ...

MySQL資料庫基本用法 查詢

查詢的基本語法 select from 表名 from關鍵字後面寫表名,表示資料 於是這張表 select後面寫表中的列名,如果是 表示在結果中顯示表中所有列 在select後面的列名部分,可以使用as為列起別名,這個別名出現在結果集中 如果要查詢多個列,之間使用逗號分隔 在select後面列前使用...