mysql按表名查找表,看看数据库中有没有叫这个名字的表。_百度知道
最佳答案: SHOW TABLES LIKE '%tablename%' 或 select TABLE_NAME from INFORMATION_SCHEMA.TABLES whereTABLE_SCHEMA='dbname' and TABLE_NAME='tablename' ;更多关于mysql查找表名的问题>>
MySQL数据库表的查看命令 - MySQL教程 - 新客网
mysql查看表结构命令,如下:desc 表名;show columns from 表名;或者describe 表名;show create table 表名;或者use information_schemaselect * from columns where...