create GUID string in postgres code example
Example 1: create GUID string in postgres
SELECT uuid_generate_v4();
Example 2: create GUID string in postgres
CREATE EXTENSION "uuid-ossp";
SELECT uuid_generate_v4();
CREATE EXTENSION "uuid-ossp";