Is there a way to generate an unique id in postgres? Suppose I have a two files:
file 1:
a, b, c
d, e, f
file2:
h, i, j
a, f, h
and I want to insert them into the same table (which should be possible because they have the same number of elements with same data type) but still be able to obtain them separately later. Can I get postgresql to generate an unique id for me?