博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL中 如何查询表名中包含某字段的表 ,查询MySql数据库架构信息:数据库,表,表字段...
阅读量:4988 次
发布时间:2019-06-12

本文共 1466 字,大约阅读时间需要 4 分钟。

--查询tablename 数据库中 以"_copy" 结尾的表select table_name from information_schema.tables where table_schema='tablename' and table_type='base table' and table_name like '%_copy';--information_schema 是MySQL系统自带的数据库,提供了对数据库元数据的访问--information_schema.tables 指数据库中的表(information_schema.columns 指列)--table_schema 指数据库的名称--table_type 指是表的类型(base table 指基本表,不包含系统表)--table_name 指具体的表名--如果本身是在tablename 这个库里新建的查询,可以去掉 table_schema='tablename ' 这一句select table_name from information_schema.tables where table_type='base table' and table_name like '%_copy';--在Informix数据库中,如何查询表名中包含某字段的表select * from systables where tabname like 'saa%'--此法只对Informix数据库有用 --查询指定数据库中指定表的所有字段名column_nameselect column_name from information_schema.columns where table_schema='csdb' and table_name='xxx' SELECT * FROM information_schema.columns WHERE column_name='brand_id'; --检查数据库'test'中的某一个表'd_ad'是否存在select count(1) from information_schema.tables where table_schema = 'test' and table_name = 'd_ad'; --如何查询mysql数据库中有多少张表select count(*) TABLES, table_schema from information_schema.tables where table_schema = 'test' group by table_schema;

 

 

-- 查询MySql数据库架构信息:数据库,表,表字段/*1.查询所有数据库*/show databases; /*2.查询所有数据表*/select * from information_schema.tables where table_schema='world'/*3.查询指定表的所有字段*/select * from information_schema.columns where table_schema='world'and table_name='city'

 

源文:https://www.cnblogs.com/acm-bingzi/p/mysql-information-schema.html

转载于:https://www.cnblogs.com/shy1766IT/p/9300400.html

你可能感兴趣的文章
Asp.Net MVC的路由
查看>>
vue浏览器返回监听
查看>>
【CODEVS3117】高精度练习之乘法
查看>>
学习进度条02
查看>>
2016年秋季个人阅读计划
查看>>
HDU1286 找新朋友
查看>>
c#解析XML和JSON
查看>>
获取表单select域的选择部分的文本
查看>>
Android之分页加载数据
查看>>
初探Object Pascal的类(八)
查看>>
Hibernate one-to-one mapping with Composite key
查看>>
说说Runnable与Callable
查看>>
ThreadLocal详解
查看>>
MVC中的Repository模式
查看>>
数据结构 排序(快速排序)
查看>>
java.util.Calendar常量字段值
查看>>
对DotNet分布式应用搭建的考虑
查看>>
scala 隐式详解(implicit关键字)
查看>>
红绿灯切换效果
查看>>
有一个人,她不会编程,但在计算机图像领域做出了卓越的贡献
查看>>