标签: postgresql
运行select * from mySchema.myTable时返回的列多于describe myTable或下面的查询返回的列
select * from mySchema.myTable
describe myTable
select * from information_schema.columns where table_name = 'myTable' and table_schema = 'mySchema'
如何找到其他列的来源?我也想找到其他列的数据类型
这些其他列的数据看起来就像插入行时一样
Edit1:向查询中添加了架构,其他信息