skip to Main Content

PostgreSQL Populate Column with Data

I try to populate null-rows in a table with data from the same table. Here is my code: create table public.testdata( id INTEGER, person INTEGER, name varchar(10)); insert into testdata (id, person,name) VALUES ( 1,1,'Jane' ), ( 2,1,'Jane' ), (…

VIEW QUESTION
Back To Top
Search