postgres仅查询没有datetime列的表

时间:2018-10-12 01:59:22

标签: postgresql

资深编码员:)我在查询没有数据类型列的表列表时遇到麻烦。 我做了这个查询

select *
from information_schema.columns 
where table_schema = 'sampleschema1' or table_schema = sampleschema1'
and columns.data_type != 'timestamp without time zone' and 
columns.data_type != 'date'

上面的查询仍然返回具有date数据类型列的表。任何帮助或提示都将不胜感激。

0 个答案:

没有答案