Answers for "create GUID string in postgres"

0

create GUID string in postgres

CREATE EXTENSION "uuid-ossp";
Posted by: Guest on March-07-2021
0

create GUID string in postgres

SELECT uuid_generate_v4();
Posted by: Guest on March-07-2021

Browse Popular Code Answers by Language