查看数据库中有大写的表

-- 查看数据库中有大写的表
SELECT table_schema,table_name FROM information_schema.tables
WHERE table_schema NOT IN ('sys', 'mysql', 'performance_schema', 'information_schema', 'test')
AND table_name REGEXP BINARY '[A-Z]';

posted @ 2020-06-23 13:22  屠魔的少年  阅读(239)  评论(0)    收藏  举报