Postgresql 扩展函数记录
启用函数
create extension tablefunc; --tablefunc扩展模块包含一系列返回记录表的函数。
create extension "uuid-ossp";--uuid扩展函数
create extension if not exists "uuid-ossp";
卸载函数
drop extension tablefunc; drop extension "uuid-ossp";
世界再大也有尽头!
启用函数
create extension tablefunc; --tablefunc扩展模块包含一系列返回记录表的函数。
create extension "uuid-ossp";--uuid扩展函数
create extension if not exists "uuid-ossp";
卸载函数
drop extension tablefunc; drop extension "uuid-ossp";