skip to Main Content

oracle %rowtype equivalent in postgresql

Need to convert the %rowtype of oracle to equivalent in postgresql. My try: create table public.test ( id int, name varchar(20) ); insert into test values (1,'A'); insert into test values (2,'B'); insert into test values (3,'C'); Note: I have…

VIEW QUESTION

Docker runs PostgreSQL in "trust" mode

I am currently learning docker and trying to run a docker container with the PostgreSQL database. I managed that once, and everything seemed to work fine. After some time, I tried to run another docker container with almost identical settings,…

VIEW QUESTION
Back To Top
Search