資料庫查詢表名之 MySql查詢全部表名

2021-08-22 08:39:12 字數 323 閱讀 4555

最近研究資料庫根據條件查詢表,找了好多地方,發現了很多有關於庫查詢全部表名的例子,但是根據條件查詢部分表名卻很少,我把我找到的分享給大家,希望能夠幫助大家:

根據條件(欄位名=?)查詢資料庫裡面的所有表名

select table_name from information_schema.columns where column_name='條件' and table_schema='庫名';

根據條件查詢資料庫下的全部表名:

select table_name from information_schema.tables where table_schema='庫名'

mysql查詢資料庫表

使用sql語句查詢mysql指定表字段。可以方便整理資料庫表的說明文件。我在工作中整理了部分sql作為記錄。可以用在以後的mysql文件匯出工具裡。以下為具體內容 使用sql查詢指定資料庫表名和表說明。select table name as tablename,table comment as c...

MySQL不同表查詢,不同資料庫查詢

內容比較弱 歡迎大神們指點 在mysql中 要實現不同表的查詢和不同資料庫的查詢,首先得有地方查吧 1 建立資料庫 create databaes test use test create table pet id int,name varchar 20 create table user id i...

mysql資料庫 多表查詢(表連線查詢

交叉連線的結果為笛卡爾積,所有連線方式都會先臨時生成笛卡爾積表。語法格式 select 查詢字段 from 表一 corss join 表二 nysql預設的連線方式為內連線。語法格式 select 查詢字段 from 表一 inner join 表二 on 表一.關係字段 表二.關係字段 wher...