PostgresSQL将查询应用于上一个查询的结果

时间:2020-08-13 15:23:19

标签: postgresql

每个人,我都是PostgresSQL的新手,我想将查询应用于其他查询的结果, 主要思想是:

1-查找包含一列的所有表:

SELECT table_name FROM information_schema.columns WHERE column_name = 'gallery'

2-然后在与条件匹配的每个表中查找并计数所有行:

SELECT COUNT(column) FROM table_name WHERE position('string' in column) > 0

对此有任何帮助吗?

0 个答案:

没有答案