码迷,mamicode.com
首页 > 数据库 > 详细

mysql小知识

时间:2018-05-30 21:27:33      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:查询   order by   rom   ble   SQ   sch   esc   HERE   mat   

-- 查询某数据库中所有表及其记录数
SELECT table_name,table_rows FROM information_schema.tables
WHERE TABLE_SCHEMA = ‘awreporting‘
ORDER BY table_rows DESC;

-- 查询某数据库中有某字段的表
SELECT table_name FROM information_schema.columns
WHERE table_schema = ‘awreporting‘ AND column_name LIKE ‘%AUTH_TOKEN%‘;

mysql小知识

标签:查询   order by   rom   ble   SQ   sch   esc   HERE   mat   

原文地址:https://www.cnblogs.com/yuezeyuan/p/9112883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!