oracle生成uuid

一隅桥畔發表於2024-04-01
-- oracle生成uuid
select sys_guid() from dual;
-- 解決亂碼
select rawtohex(sys_guid()) from dual;

相關文章