How to get the last inserted id from a sequence in postgresql

H

How Can We Help?

How to get the last inserted id from a sequence in postgresql

Use the currval() sequence function

SELECT currval('my_sequence');

Replace my_sequence with your sequence, remember currval returns the latest value that was obtained from your sequence in your session.

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me