1、 進入資料庫 mysql -u 使用者名稱 -p 密碼
2、 匯出資料庫 mysqldump -u 使用者名稱 -p 密碼 資料庫名(表名)> 路徑 備份.sql
3、 匯入資料庫 mysql -u 使用者名稱 -p 密碼 資料庫名< 路徑 備份.sql
或者進入mysql,使用source 路徑 備份 此方法可以單獨匯入表
4、 顯示所有資料庫 show databases;
5、 使用資料庫 use 資料庫名;
6、 顯示所有表 show tables;
7、 建立資料庫 create database 資料庫名;
8、 建立表 create table 表名(變數名 變數型別(大小)約束條件,變數名 變數型別(變數大小)約束條件,primary key(主鍵) );
9、 描述表 describe 表名;
10、向表中輸入資料 insert into 表名 values( );
11、select 列 from 表 order by 列 desc/asc
select count(*) from 表名 統計表中記錄總數
descending 降序排列的意思
ascending 公升序排列
12、刪除表內容
delete from 表名
truncate table 表名
13、更新表內容
update table 表名 set=' ' where 條件
14、改變表結構
alter table 表名 add id int(10) 【列名 資料型別】 增加列
alter table 表名 drop id 【列名】 刪除列
alter table 表名 modify id int(6); 修改列
15、改變表名
rename table 表名1 to 表名2
16、檢視資料庫、表建立資訊
show create database 資料庫名
show create table 表名
17、過濾表中重複的資訊
select distinct 列名 from 表名
mysql學習筆記 51 mysql學習筆記
初學mysql時整理,隨時更新 資料操作 增 insert into 表名 字段列表 values 值列表 值列表 如果要插入的值列表包含所有字段並且順序一致,則可以省略字段列表。可同時插入多條資料記錄!replace 與 insert 完全一樣,可互換。insert into 表名 set 欄位名...
mysql學習筆記 51 Mysql 學習筆記
一.首先進入mysql mysql u root p新增使用者許可權設定 grant all privileges on to jerry localhost identified by aa1234567 只允許本機訪問 grant all privileges on to jerry 10.80...
mysql做筆記 mysql學習筆記
alter table 新增,修改,刪除表的列,約束等表的定義。檢視列 desc 表名 修改表名 alter table t book rename to bbb 新增列 alter table 表名 add column 列名 varchar 30 刪除列 alter table 表名 drop ...