Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 PostgreSQL 中编写一个函数,它需要有 100 多个参数。当我尝试运行语句时,服务器抱怨该函数不能有超过 100 个参数。所以我想知道有没有办法覆盖这个限制以及如何?提前致谢。
您可以使用数组作为参数
解决方案:您可以改为传递一个record多列。或多个此类记录。
record
提示:您还可以使用数据库中现有表类型的记录或为此创建新表类型,以获得严格类型编码的所有好处。