1. 程式人生 > >mysql中如何查看錶結構

mysql中如何查看錶結構

1.登陸mysql

命令:

mysql -uroot -p

2.此處以mysql資料庫的func表為例

查看錶結構的方法1

---命令:

desc func;

--方法2

命令:

describe func;


--方法3

命令:

show columns from func;


3.使用mysql的工具mysqlshow.exe

mysql 資料庫 表