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
Back To Top
Search