需要匯出資料庫中表的字段及屬性,製成**儲存到word中
首先找到要導的庫, 在查詢頁面輸入sql
select得到結果column_name 列名,
column_type 資料型別,
data_type 字段型別,
character_maximum_length 長度,
is_nullable 是否為空,
column_default 預設值,
column_comment 備註
from
information_schema.columns
where
table_schema ='
庫名'andtable_name ='
表名'
然後進行複製, 就能將結果複製下來
注意,複製的是內容,沒有表頭和表的格式,需要自己在word上畫乙個大小合適的**,然後將資料貼上上去就行了
MySQL 表及字段注釋
1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table test1 modif...
Mysql匯出表 匯入表相關操作
匯出資料 set gtid purged off注意此引數新增後匯出的指令碼帶binlog,否則主從同步會出問題 1 備份全部資料庫的資料和表結構 mysqldump uroot ppassword a all.sql set gtid purged off 2 只備份表結構,不備份資料 mysql...
匯出mysql資料庫表中的部分字段
思路 先把要匯出的字段建立一張新錶,然後將就表中要到處的字段資料複製到新錶中,最後將新錶中的字段全量匯出即可。1 將要匯出的字段建立乙個新錶e inv investment new 如要匯出字段 eid inv eid inv subconam 建表 2 利用sql將舊表 e inv investm...