启用函数
create extension tablefunc; --tablefunc扩展模块包含一系列返回记录表的函数。
create extension "uuid-ossp";--uuid扩展函数
create extension if not exists "uuid-ossp";
卸载函数
drop extension tablefunc; drop extension "uuid-ossp";标签:Postgresql,函数,extension,create,扩展,ossp,tablefunc,uuid From: https://www.cnblogs.com/shijiehaiyang/p/17403769.html