lzm1996 2018-09-29 09:52:45
oracle UUID生成,带横岗。
--oracle UUID自动生成,带横岗:
select substr(sys_guid(), 1, 8) || '-' || substr(sys_guid(), 9, 4) || '-' ||
substr(sys_guid(), 13, 4) || '-' || substr(sys_guid(), 17, 4) || '-' ||
substr(sys_guid(), 20, 12) as "UUID(32位带横岗8,4,4,4,12)"
FROM dual;