摘要:
a.showtables或showtables from database_name; -- 显示当前数据库中所有表的名称b.showdatabases; -- 显示mysql中所有数据库的名称c.showcolumns from table_name from database_name; 或sh... 阅读全文
摘要:
显示所有的数据库:showdatabases显示一个数据库所有表用:showtablesfromDatabaseNameSELECT table_name FROM information_schema.tables WHERE table_schema='DatabaseName' AND tab... 阅读全文