mysql查询表信息

查询某个表的字段名字及信息 方法1:desc <table_name> 例子:查看表名字:GreyList 方法2:show create table <table_name> 例子:查看GreyList表 show create table GreyList; 方法3:SELECT * FROM information_schema.columnsWHERE table_schema = <yo
相关文章
相关标签/搜索