zoukankan      html  css  js  c++  java
  • MySQL中 如何查询表名中包含某字段的表

     

     

    查询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_name

    select column_name from information_schema.columns where table_schema='csdb' and table_name='xxx'

     检查数据库'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;

  • 相关阅读:
    CF932E Team Work
    BZOJ 4480 [JSOI2013] 快乐的jyy
    CF285E Positions in Permutations
    P4312 [COCI 2009] OTOCI / 极地旅行社
    P3327 [SDOI2015]约数个数和
    P3649 [APIO2014]回文串
    P3181 [HAOI2016]找相同字符
    P3346 [ZJOI2015]诸神眷顾的幻想乡
    P4248 [AHOI2013]差异
    P4512 【模板】多项式除法
  • 原文地址:https://www.cnblogs.com/cheyunhua/p/10640406.html
Copyright © 2011-2022 走看看