postgresql通过下面语句可能查看到系统用户创建的表信息以及字段名称等
select table_schema,
table_name,
column_name,
data_type,
column_default,
is_nullable
from information_schema.columns
where table_name = 'test';
test为创建的表
有点类似mysql数据库的,几乎是一样的。
postgresql通过下面语句可能查看到系统用户创建的表信息以及字段名称等
select table_schema,
table_name,
column_name,
data_type,
column_default,
is_nullable
from information_schema.columns
where table_name = 'test';
test为创建的表
有点类似mysql数据库的,几乎是一样的。