PostgreSQL 查看数据表对应的数据类型

select column_name,data_type 
from information_schema.columns 
where table_name = 'icustays'

 

你可能感兴趣的:(SQL)