Home >Database >Mysql Tutorial >Oracle数据库获取uuid函数

Oracle数据库获取uuid函数

WBOY
WBOYOriginal
2016-06-07 16:50:121648browse

Oracle新建系统表时,要求主键为32位uuid,猜测Oracle肯定会提供相关的函数。

Oracle新建系统表时,,要求主键为32位uuid,猜测Oracle肯定会提供相关的函数。

翻阅相关文档,果然发现Oracle提供的函数 sys_guid() 用于获取32位uuid,简单使用为

select sys_guid() from dual;

该函数返回32位的uuid为大写,可以使用 lower(sys_guid()) 转为小写。

--------------------------------------------------------------------------------

Linux-6-64下安装Oracle 12C笔记

在CentOS 6.4下安装Oracle 11gR2(x64)

Oracle 11gR2 在VMWare虚拟机中安装步骤

Debian 下 安装 Oracle 11g XE R2

--------------------------------------------------------------------------------

本文永久更新链接地址:

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Oracle数据库实用函数Next article:MySQL设置utf8mb4编码