当前位置:网站首页>PG library to view the distribution keys of a table in a certain mode
PG library to view the distribution keys of a table in a certain mode
2022-04-23 13:41:00 【Wangcai 2】
SELECT
aaa.nspname AS " Schema name ",
aaa.relname AS " Table name ",
ccc.attname AS " Distribution keys "
FROM (
SELECT
aa.oid,
aa.relname,
bb.pcattnum,
dd.nspname
FROM pg_class aa
LEFT JOIN pgxc_class bb ON aa.oid = bb.pcrelid
LEFT JOIN pg_namespace dd ON aa.relnamespace = dd.oid
) aaa
LEFT JOIN pg_attribute ccc ON ccc.attrelid = aaa.oid AND ccc.attnum = aaa.pcattnum
WHERE ccc.attnum > 0
AND aaa.nspname = ' Schema name '
and aaa.relname = ' Table name '
ORDER BY aaa.relname
版权声明
本文为[Wangcai 2]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230604300200.html
边栏推荐
- Oracle database combines the query result sets of multiple columns into one row
- Innobackupex incremental backup
- Playwright contrôle l'ouverture de la navigation Google locale et télécharge des fichiers
- 联想拯救者Y9000X 2020
- [andorid] realize SPI communication between kernel and app through JNI
- Loading and using image classification dataset fashion MNIST in pytorch
- TCP reset Gongji principle and actual combat reproduction
- ARGB transparency conversion
- [barycentric coordinate interpolation, perspective correction interpolation] principle and usage opinions
- Explanation of input components in Chapter 16
猜你喜欢
Loading and using image classification dataset fashion MNIST in pytorch
Ai21 labs | standing on the shoulders of giant frozen language models
Lpddr4 notes
Example interview | sun Guanghao: College Club grows and starts a business with me
"Xiangjian" Technology Salon | programmer & CSDN's advanced road
Why do you need to learn container technology to engage in cloud native development
[point cloud series] foldingnet: point cloud auto encoder via deep grid deformation
【重心坐标插值、透视矫正插值】原理以及用法见解
SAP UI5 应用开发教程之七十二 - SAP UI5 页面路由的动画效果设置
MySQL5. 5 installation tutorial
随机推荐
Publish custom plug-ins to local server
Oracle clear SQL cache
Antd design form verification
Super 40W bonus pool waiting for you to fight! The second "Changsha bank Cup" Tencent yunqi innovation competition is hot!
MySQL 8.0.11 download, install and connect tutorials using visualization tools
Error 403 in most cases, you or one of your dependencies are requesting
Personal learning related
Detailed explanation of constraints of Oracle table
Cross carbon market and Web3 to achieve renewable transformation
Oracle kills the executing SQL
Isparta is a tool that generates webp, GIF and apng from PNG and supports the transformation of webp, GIF and apng
Plato farm, a top-level metauniverse game, has made frequent positive moves recently
为什么从事云原生开发需要学习容器技术
Solve the problem that Oracle needs to set IP every time in the virtual machine
[multi screen interaction] realize dual multi screen display II: startactivity mode
playwright控制本地谷歌浏览打开,并下载文件
XML
@Excellent you! CSDN College Club President Recruitment!
Migrating your native/mobile application to Unified Plan/WebRTC 1.0 API
Bottomsheetdialogfragment + viewpager + fragment + recyclerview sliding problem