http://chenxiaoyu.org/blog/archives/209
测试环境:Postgresql 8.4
默认Postgresql是木有UUID函数可使用, 而不像MysqL提供uuid()函数,不过在contrib里有,只需要导入一下uuid-ossp.sql即可。(PS:注意权限问题,要Pg可读改 文件。)
导入很简单,下面是win下面测试,其他平台类似该操 作:
D:/>psql -U postgres -h localhost -f D:/Postgresql/8.4/share/contrib/uuid-ossp.sql
Password for user postgres:
SET
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
CREATE FUNCTION
进入psql,执行:
postgres=# select uuid_generate_v1();
uuid_generate_v1
--------------------------------------
86811bd4-22a5-11df-b00e-ebd863f5f8a7
(1 row)
postgres=# select uuid_generate_v4();
uuid_generate_v4
--------------------------------------
5edbfcbb-1df8-48fa-853f-7917e4e346db
(1 row)
主要就是uuid_generate_v1和 uuid_generate_v4,当然还有uuid_generate_v3和uuid_generate_v5。其他使用可以参见 Postgresql官方文档 uuid-ossp 。