Postgresql 扩展函数记录

启用函数

create extension tablefunc; --tablefunc扩展模块包含一系列返回记录表的函数。
create extension  "uuid-ossp";--uuid扩展函数

卸载函数

drop extension tablefunc;

drop extension "uuid-ossp";
原文地址:https://www.cnblogs.com/Thenext/p/14305599.html