Update db.DbMain.GetColumns (PGSQL)

This commit is contained in:
sunkaixuan 2023-08-07 18:39:04 +08:00
parent 90c1226a68
commit 8c5c4eea79

View File

@ -36,7 +36,7 @@ namespace SqlSugar
then true else false end as IsNullable
from (select * from pg_tables where upper(tablename) = upper('{0}') and schemaname='" + schema + @"') ptables inner join pg_class pclass
on ptables.tablename = pclass.relname inner join (SELECT *
FROM information_schema.columns
FROM information_schema.columns where table_schema='" + schema + @"'
) pcolumn on pcolumn.table_name = ptables.tablename
left join (
select pg_class.relname,pg_attribute.attname as colname from