From: pgsql-general-owner@xxxxxxxxxxxxxx [mailto:pgsql-general-owner@xxxxxxxxxxxxxx]
On Behalf Of Tobias Fielitz select * from information_schema.table_constraints where table_name=‘install_crash’; Results here: http://imgur.com/YymSvBS How can I get more information about these constraints, especially on which columns the not null constraints are? Thanks
CTO StreetHawk +61404267511 tobias.fielitz (skype) -- select column_name, is_nullable from information_schema.columns where table_name = 'install_crash'; Regards, Igor Neyman |