Postgresql插入数据返回自增id

前端之家收集整理的这篇文章主要介绍了Postgresql插入数据返回自增id前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Postgresql插入数据返回自增id

一、设置自增id

新建字段 并且将字段属性设置为serial

二、插入返回

insert语句增加return

例如:insert into point(pointtype,pointx,pointy,pointval)values(1,2,3,4) RETURNING id;

原文链接:https://www.f2er.com/postgresql/195123.html

猜你在找的Postgre SQL相关文章