程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> Mysql簡單操作,mysql操作

Mysql簡單操作,mysql操作

編輯:MySQL綜合教程

Mysql簡單操作,mysql操作


 

//Mysql版本:5.7.13

 

1.以管理員身份運行命令提示符,轉到mysql的安裝位置
2.啟動mysql服務:net start mysql
3.root身份登錄:mysql -uroot -p 回車鍵


4.列出所有數據庫:show databases;
5.創建一個數據庫:create databases Database_Name;
6.判斷是否存在再創建數據庫:create databases if not exists Database_Name;
7.刪除數據庫:drop database Database_Name;
8.選擇一個數據庫:use Database_Name;


9.列出選中數據庫中的所有數據表:show tables;
10.展示數據表的列(column)詳情:show columns from Table_Name;或者:describe Table_Name;
11.選中展示數據表:select * from Table_Name;
12.帶條件展示數據表:select * from Table_Name where id>=2;
13.創建數據表:create table Table_Name(col_01_Name Type Details,col_02_Name Type Details,...);
14.先判斷再創建數據表:create table if not exists Table_Name(...);
15.復制數據表:create table Table_Name_01 select * from Table_Name_02;
16.重命名數據表:alter table Table_Name rename as New_Table_Name;或者:rename table Old_Name to New_Name;
17.刪除數據表:drop table Table_Name;


18.向數據表添加紀錄:insert into Table_Name set col_01=Value1,col_02=Value2;
19.修改數據表中的記錄:update Table_Name set col_Name=New_Value where id=1;
20.刪除數據表中的記錄:delete from Table_Name;
21.帶條件刪除數據表中的記錄:delete from Table_Name where id=1;


22.#當前時間查看:select now();
23.#當前用戶:select user();
24.#當前數據庫程序版本:select version();
25.#當前狀態:show status;
26.#查看當前連接的用戶:show processlist;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved