TIDB: 元数据查询语句

本文介绍了使用SQL进行数据库操作的多个关键查询,包括表和视图描述、表存在性判断、字段详细信息获取、用户权限检查、库和表列表以及分区信息查询。
摘要由CSDN通过智能技术生成

一、获取表描述

select table_name,table_comment from information_schema.TABLES where table_schema = '%s' and table_name in (%s)

二、获取视图DDL

SELECT * FROM information_schema.views WHERE TABLE_NAME = '%s' and TABLE_SCHEMA = '%s'

三、判断表是否存在sql

select table_name from information_schema.TABLES where table_name = '%s' and table_schema = '%s'

四、字段详情查询

select table_name,column_name,ordinal_position,column_default,EXTRA,is_nullable,data_type,column_comment,column_key,numeric_precision,numeric_scale,character_maximum_length from information_schema.columns where table_name in ('%s') and table_schema = '%s'

五、查询当前用户是否存在

select host,user form mysql.user where user = '%s'

六、查询库列表

SELECT schema_name SCHEMA_NAME FROM information_schema.schemata

七、查询表列表

select table_name,table_comment from information_schema.TABLES where table_schema = '%s' and table_type = '%s'

八、查询用户对某表所拥有的权限

select Table_priv from `mysql`.`tables_priv` where Host in ('%', '%s') and DB = '%s' and User='%s' and Table_name = '%s'

九、查询分区信息

select * from information_schema.PARTITIONS where table_name in (%s) and table_schema = '%s' ORDER BY TABLE_NAME ASC,PARTITION_ORDINAL_POSITION ASC
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

玉成226

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值