当前位置:网站首页>Processon producer process (customized)
Processon producer process (customized)
2022-06-25 02:16:00 【Eistert】
1 Find out the column names of related tables 、 notes 、 data type
1.1 SQL1
SELECT
a.OWNER Pattern ,
a.TABLE_NAME Table name ,
a.COLUMN_NAME Name ,
a.DATA_TYPE data type ,
a.DATA_LENGTH length ,
a.NULLABLE Non empty ,
--(CASE WHEN a.NULLABLE = 'N' THEN 'Y' ELSE 'N' END) Non empty ,
b.COMMENTS notes
FROM
ALL_TAB_COLUMNS a
LEFT JOIN ALL_COL_COMMENTS b ON
a.OWNER = b.OWNER
AND a.TABLE_NAME = b.TABLE_NAME
AND a.COLUMN_NAME = b.COLUMN_NAME
WHERE
a.OWNER = ' Database name /schema name '
AND
a.TABLE_NAME = ' Table name '
1.2 SQL2
SELECT
-- a.TABLE_NAME Table name ,
a.COLUMN_NAME Name ,
b.COMMENTS notes ,
a.DATA_TYPE data type
-- a.DATA_LENGTH length ,
-- a.NULLABLE Non empty ,
--(CASE WHEN a.NULLABLE = 'N' THEN 'Y' ELSE 'N' END) Non empty ,
FROM
user_tab_columns a
LEFT JOIN USER_COL_COMMENTS b ON a.TABLE_NAME = b.TABLE_NAME
AND a.COLUMN_NAME = b.COLUMN_NAME
WHERE
a.TABLE_NAME = ' Table name '
ORDER BY a.COLUMN_ID



2 Will this TXT Copy the document to processon in , Copy as many tables as you have .
The effect is as follows 
边栏推荐
- 1-6搭建Win7虚拟机环境
- Cusdis - lightweight, privacy first open source comment system | chain of the city
- 当他们在私域里,掌握了分寸感
- Intranet learning notes (7)
- 产业互联网的概念里有「互联网」字眼,但却是一个和互联网并不关联的存在
- beescms网站渗透测试和修复意见「建议收藏」
- qt打包exe文件,解决“无法定位程序输入点_ZdaPvj于动态链接库Qt5Cored.dll”
- Can automate - 10k, can automate - 20K, do you understand automated testing?
- Convert string array to list collection
- LINQ 查询(3)
猜你喜欢

Intégration de la plate - forme de test continu open source de metersphere avec Alibaba Cloud Effect devops

Lizuofan, co-founder of nonconvex: Taking quantification as his lifelong career

Exploring the mystery of C language program -- C language program compilation and preprocessing

How to quickly familiarize yourself with the code when you join a new company?

What are the reasons for the abnormal playback of the online channel of the channel accessed by easycvr national standard protocol?

【Proteus仿真】Arduino UNO+数码管显示4x4键盘矩阵按键

TSDB在民机行业中的应用

内网学习笔记(7)

Software testing salary in first tier cities - are you dragging your feet

【STL源码剖析】配置器(待补充)
随机推荐
放养但没有完全放养(春季每日一题 2)
左手梦想 右手责任 广汽本田不光关注销量 还有儿童安全
LogMiner 数据库日志挖掘
When they are in private, they have a sense of propriety
保险APP适老化服务评测分析2022第06期
转行软件测试2年了,给还在犹豫的女生一点建议
云原生数据库VS传统数据库
指南针靠谱吗?开证券账户安全吗?
jwt
Smartctl 打开设备遇到 Permission denied 问题排查过程记录
2022-06-24:golang选择题,以下golang代码输出什么?A:1;B:3;C:4;D:编译失败。 package main import ( “f
股票开账户如何优惠开户?手机开户是安全么?
Cusdis - 轻量级、隐私优先的开源评论系统 | 倾城之链
Cusdis - lightweight, privacy first open source comment system | chain of the city
Lizuofan, co-founder of nonconvex: Taking quantification as his lifelong career
Convert string array to list collection
3 years of testing experience. I don't even understand what I really need on my resume. I need 20K to open my mouth?
[day 26] given the ascending array nums of n elements, find a function to find the subscript of target in nums | learn binary search
Use of hashcat
js正则匹配数字、大小写字母、下划线、中线和点[通俗易懂]