如何查看一个表的字段及其字段描述等信息并导出为一个table, 不使用show语句
直接看information_schema下的COLUMNS表就行吧 select * from information_schema.COLUMNS where table_name='xxx';
select * from information_schema.COLUMNS where table_name='xxx';
可以用navcat工具点击目标表,右侧可以显示建表语句。
show columns from table;
这不还是show么~
有骗积分的嫌疑
这个其实也是show的
information_schema里可以看吧
此话题已在最后回复的 60 天后被自动关闭。不再允许新回复。