表名字Test
段是id Name age city
| ID | NAME | AGE | CITY |
| 1 | raja | 20 | abc |
| 2 | raju | 32 | abcd |
标识为Primary key
。
现在我想插入 3 个条目重复的 2 个条目的 id 没有 3。没有指定列名。
样本条目:
| 3 | raju | 32 | abcd |
喜欢:
insert into Test select 3,(get value with out id and don't specify the columns name) from test where id=2
有可能的?。如果可能的话,如何做到这一点或告诉任何可行的解决方案?
版本:PostgreSQL 9.3