A. linux查看mysql數據表結構
一、簡單描述表結構,欄位類型
desc tabl_name;
顯示表結構,欄位類型,主鍵,是否為空等屬性,但不顯示外鍵。
例如:desc table_name
這個命令雖然顯示起來不是太容易看, 這個不是問題可以用G來結尾,使得結果容易閱讀;該命令把創建表的DDL顯示出來,於是表結構、類型,外鍵,備注全部顯示出來了。
我比較喜歡這個命令:輸入簡單,顯示結果全面。
B. 如何修改mysql資料庫表結構
Online DDL 工具:pt-osc
對於 MySQL Online DDL 目前主流的有三種工具:
原生 Online DDL;
pt-osc(online-schema-change),
gh-ost
本文主要講解 pt-online-schema-change 的使用以及三種工具的簡單對比。
一、原理及限制
1.1 原理
1.創建一個與原表結構相同的空表,表名是_new後綴;
2. 修改步驟 1 創建的空表的表結構;
3. 在原表上加三個觸發器:delete/update/insert,用於 數據過程中,將原表中要執行的語句在新表中執行;
4. 將原表數據以數據塊(chunk)的形式 到新表;
5. rename 原表為 old 表,並把新表 rename 為原表名,然後刪除舊表;
6. 刪除觸發器。
C. 解決mysql查詢資料庫所有的表名稱和表結構的sql語句怎麼寫
查詢MySQL資料庫所有表名的SQL命令:
show tables;
CREATE TABLE `students` (
`sid` char(10) NOT NULL,
`sname` varchar(50) NOT NULL,
`sex` char(1) NOT NULL,
`dob` date NOT NULL,
`phone` varchar(30) DEFAULT NULL,
PRIMARY KEY (`sid`),
KEY `index_tbl1_url` (`phone`(20))
) ENGINE=InnoDB DEFAULT CHARSET=gb2312
D. 二期mysql資料庫重構,表結構和一期資料庫完全不一樣,數據遷移問題
是所有的表結構都不一樣么?新表中的表結構,包含老表中的結構么?如果只是在老表基礎上加了一些新的欄位,那麼正常導入之後,再重新增加那些新欄位就可以了,如果是欄位有多有少或者有需要運算的,那就挨個表導入數據吧
E. 如何比較mysql資料庫的表結構和表內容的差異
先把每個庫的表結構導出到文件,然後比較這兩個文件。
mysqlmp --skip-comments --skip-extended-insert -u root -p database1>file1.sql
mysqlmp --skip-comments --skip-extended-insert -u root -p database2>file2.sql
diff file1.sql file2.sql
其實還有一些比較工具,推薦一個
mysql-comparison-tools
F. 如何比較mysql資料庫結構的不同
您好.
先把每個庫的表結構導出到文件,然後比較這兩個文件。
mysqlmp
--skip-comments
--skip-extended-insert
-u
root
-p
database1>file1.sql
mysqlmp
--skip-comments
--skip-extended-insert
-u
root
-p
database2>file2.sql
diff
file1.sql
file2.sql
其實還有一些比較工具,推薦一個
mysql-comparison-tools
G. mysql中查詢資料庫中表名稱和結構的sql語句是什麼啊啊
TABLE 語句
具體語法:TABLE table_name [ORDER BY column_name] [LIMIT number [OFFSET number]]
其實從語法上看,可以排序,也可以過濾記錄集,不過比較簡單,沒有 SELECT 那麼強大。
示例 1
簡單的建一張很小的表 y1,記錄數為 10 條。表 t1,插入 10 條記錄
mysql-(ytt/3305)->create table t1 (r1 int,r2 int);
Query OK, 0 rows affected (0.02 sec)
mysql-(ytt/3305)->insert into t1
with recursive aa(a,b) as (
select 1,1
union all
select a+1,ceil(rand()*20) from aa where a < 10
) select * from aa;
Query OK, 10 rows affected (0.00 sec)
Records: 10 Duplicates: 0 Warnings: 0
- 簡單全表掃描mysql-(ytt/3305)->select * from t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
- TABLE 結果mysql-(ytt/3305)->table t1;+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
- 看下 table 的執行計劃mysql-(ytt/3305)->explain table t1 order by r1 limit 2G*************************** 1. row *************************** id: 1 select_type: SIMPLE table: t1 partitions: NULL type: ALLpossible_keys: NULL key: NULL key_len: NULL ref: NULL rows: 10 filtered: 100.00 Extra: Using filesort1 row in set, 1 warning (0.00 sec)
- 其實可以看到 TABLE 內部被 MySQL 轉換為 SELECT 了。mysql-(ytt/3305)->show warningsG*************************** 1. row *************************** Level: Note Code: 1003Message: /* select#1 */ select `ytt`.`t1`.`r1` AS `r1`,`ytt`.`t1`.`r2` AS `r2` from `ytt`.`t1` order by `ytt`.`t1`.`r1` limit 21 row in set (0.00 sec)
- 那其實從上面簡單的例子可以看到 TABLE 在內部被轉成了普通的 SELECT 來處理。示例 2應用於子查詢里的子表。這里要注意,內表的欄位數量必須和外表過濾的欄位數量一致。克隆表 t1 結構mysql-(ytt/3305)->create table t2 like t1;Query OK, 0 rows affected (0.02 sec)
- 克隆表 t1 數據mysql-(ytt/3305)->insert into t2 table t1;Query OK, 10 rows affected (0.00 sec)Records: 10 Duplicates: 0 Warnings: 0
- table t1 被當做內表,表 t1 有兩個欄位,必須同時滿足 t2 檢索時過濾的欄位也是兩個。mysql-(ytt/3305)->select * from t2 where (r1,r2) in (table t1);+------+------+| r1 | r2 |+------+------+| 1 | 1 || 2 | 9 || 3 | 9 || 4 | 17 || 5 | 17 || 6 | 16 || 7 | 6 || 8 | 1 || 9 | 10 || 10 | 3 |+------+------+10 rows in set (0.00 sec)
- 注意:這里如果過濾的欄位數量和子表數量不一致,則會報錯。
H. mysql資料庫怎麼查看錶結構
登陸mysql
命令:
mysql -uroot -p
此處以mysql資料庫的func表為例
查看錶結構的方法1
命令:
desc func;
方法2
命令:
describe func;
方法3
命令:
show columns from func;
方法3
命令:
explain func;
方法3
使用mysql的工具mysqlshow.exe
mysql 資料庫 表
I. mysql怎麼查看錶結構
在我第N次忘記如何查看錶結構後,在網上查了一下後,看到有好幾種查看錶結構的方式,總結一下。
以student(sid,sname,birthday,sex)的查看為例。
【方式一】:desc student;
語法:desc 表名;---------------------用於查看錶整體結構
【方式二】:describe student;
語法:describe 表名;---------------------用於查看錶整體結構;
【方式三】:show columns from student;
語法:show columns from 表名;--------------------------用於查看錶整體結構;
【方式四】:show create table student;
語法:show create table 表名;--------------------------用於查看錶整體結構;
【方式五】:show full fields from student;
語法:show full fields from 表名;--------------------------------- 用於查看錶整體結構;
【方式六】:show fields from student;
語法:show fields from 表名;----------------------------用於查看錶整體結構;
【方式七】:desc student sname;
語法:desc 表名 成員名;--------------------------------用於查詢表中的一部分;
【方式八】:show index from student;
語法:show index from 表名;------------------------------------用於查看錶局部結構;這種顯示不是很直觀,也不是可以完全顯示所有信息。
J. mysql怎麼查看錶結構和注釋
MySQL 查看錶結構簡單命令。
一、簡單描述表結構,欄位類型desc tabl_name;
顯示表結構,欄位類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select * from information_schema.columns where table_schema = 'db' #表所在資料庫
and table_name = 'tablename' ; #你要查的表
三、只查詢列名和注釋
select column_name,
column_comment from information_schema.columns where table_schema ='db' and
table_name = 'tablename' ;
四、#查看錶的注釋
select table_name,table_comment from information_schema.tables where table_schema = 'db' and table_name ='tablename'
ps:二~四是在元數據表中查看,我在實際操作中,常常不靈光,不知為什麼,有了解的大俠請留印。
五、查看錶生成的DDL show create table table_name;