资深编码员:)我在查询没有数据类型列的表列表时遇到麻烦。 我做了这个查询
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数据类型列的表。任何帮助或提示都将不胜感激。