mysql常用命令總結 mySql常用命令總結

2021-10-19 19:27:35 字數 925 閱讀 5627

總結一下自己常用的mysql資料庫的常用命令;

mysql -u root -p     # 進入mysql bin目錄後執行,回車後輸入密碼連線。

資料庫操作;

1 > create database dbname;        # 建立資料庫,資料庫名為dbname

2 > create database `todo` default character set utf8 collate utf8_general_ci;        # 建立todo資料庫,並指定字符集

3 > show databases;        # 顯示所有資料庫

4 > alter database character set utf8;        # 修改資料庫字符集

5 > use dbname;        # 選擇資料庫

6 > status;        # 檢視當前選擇(use)的資料庫

7 > drop database dbname;        # 刪除資料庫

資料表操作;

1 > show tables;        # 顯示所有表

2 > describe tablename;        # 表結構詳細描述

3 > desc tablename;       # 同 describe 命令一樣

4 > create table newtable like oldtable;       # 複製表結構

5 > insert into newtable select * from oldtable;        #複製表資料

6 > rename table tablelname to new_tablelname       # 重新命名表,同時命名多個錶用逗號「,」分割

7 > drop table tablename;       # 刪除表

mysql常用命令總結 Mysql 常用命令總結

mysql資料庫中的sql用法 檢視專案連線的mysql庫中的所有資料庫資訊 show databases 產看當前專案連線的資料庫資訊 select database 展示當前連線的資料庫的所有資料表資訊 show tables 查詢mysql的所有使用者資訊 select distinct co...

MySql常用命令總結

1 使用show語句找出在伺服器上當前存在什麼資料庫 mysql show databases 2 2 建立乙個資料庫mysqldata mysql create database mysqldata 3 選擇你所建立的資料庫 mysql use mysqldata 按回車鍵出現database c...

MySql常用命令總結

mysql常用命令總結 這兩天搞個 又用到mysql,可是命令卻乙個都想不起來,所以,趁這次機會,把這些整理一下,權當作筆記吧,以便自己以後查閱!1 使用show語句找出在伺服器上當前存在什麼資料庫 mysql show databases 2 2 建立乙個資料庫mysqldata mysql cr...