for primary key:sequence or select id and add 1
in any table i have a primary key , to generate a value in primary key we have options
1- create sequence and assign the sequence to the column.
2- select max(id)+1 and assign the value to the column .
what is the best ?
what is the disadvantages for option 2 ?