查询information_schema.columns以返回PostgreSQL中的输出列名和值

时间:2016-01-13 02:03:26

标签: sql database postgresql

我想编写一个查询来使用information_schema子句选择列和值。我尝试了一些选项,但仍然没有为我工作。

我尝试以下方法:

SELECT column_name FROM information_schema.columns 
WHERE
table_name='tblmst_app' AND table_the_column_is_from.app_id = 'some_id'

我想要的返回输出应该是:

Column Name   | the Values
===========================
app_id        | 20

0 个答案:

没有答案