命令: show processlist; 假设是root帐号,你能看到全部用户的当前连接.假设是其他普通帐号,仅仅能看到自己占用的连接. show processlist;仅仅列出前100条,假设想全列出请使用show full processlist; mysql> show processlist; 命令: show status; 命令:show status like '%以下变量%'; Aborted_clients 因为客户没有正确关闭连接已经死掉.已经放弃的连接数量. …
查看所有表的字符集 SELECT table_name, table_type, engine, version, table_collation FROM information_schema.tables WHERE table_schema = 'test_db11' ORDER BY table_name DESC; 查看单张表字段的字符集 SHOW FULL COLUMNS FROM sw_test_table11; 使用效果截图 转载:https://www.cnblogs.com/…