在mysql中輸出屬性注釋的方法:1.啟動mysql;2.登錄mysql數(shù)據(jù)庫;3.進(jìn)入數(shù)據(jù)表;4.執(zhí)行命令查看字段的屬性和注釋;
具體步驟如下:
1.首先,在命令行中啟動mysql服務(wù);
service mysql start
2.mysql服務(wù)啟動后,輸入用戶名和密碼,登錄mysql數(shù)據(jù)庫;
mysql -u root -p
3.登錄到mysql數(shù)據(jù)庫后,進(jìn)入數(shù)據(jù)庫,并在數(shù)據(jù)庫中進(jìn)入一個數(shù)據(jù)表;
user 數(shù)據(jù)庫名;
USE 表名;
4.最后,進(jìn)入數(shù)據(jù)表后,在數(shù)據(jù)表中執(zhí)行命令即可列出表中所有字段的屬性和注釋;
select * from information_schema.columns where table_name='表名';