Postgresql 扩展函数记录

一只奋斗的小小鸟 / 2023-05-16 / 原文

启用函数

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

 

卸载函数

drop extension tablefunc;

drop extension "uuid-ossp";