PostgreSQL:从表中选择返回的列多于表定义中的列

时间:2019-07-09 05:28:58

标签: postgresql

运行select * from mySchema.myTable时返回的列多于describe myTable或下面的查询返回的列

select * from information_schema.columns 
where table_name = 'myTable'
and table_schema = 'mySchema'

如何找到其他列的来源?我也想找到其他列的数据类型

这些其他列的数据看起来就像插入行时一样

Edit1:向查询中添加了架构,其他信息

0 个答案:

没有答案