Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 291 Bytes

generate-uuid.md

File metadata and controls

11 lines (7 loc) · 291 Bytes

How to Generate a Random UUID


In PostgreSQL you may find that you need a uuid for some reason, maybe an example or a test. You can generate a random uuid by using this command:

select gen_random_uuid()

link