如何在 postgresql 中查询枚举的值
您好,我想在 postgresql 中使用枚举作为创建表的替代方法,因为这些值永远不会改变,但我希望能够为应用程序检索这些值,该应用程序可能会检查以防万一,有什么办法查询它来获取值?
Hi i want to use an enum in postgresql as an alternative to making a table, because the values my never change, but i want to be able to retrieve these values for an application that might check just in case they do, is there any way the query it to get the values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将返回枚举“your_enum”内容的单列结果集,其中包含名为“your_column”的文本类型列。
This will return a single column result set of the contents of the enum "your_enum" with a column named "your_column" of type text.
请参阅手册:函数和运算符/枚举支持函数
您可能需要 enum_range(...) 函数。
或者,您可以查看系统目录:pg_enum
See the manual: Functions and Operators / Enum Support Functions
You probably want the enum_range(...) function.
Alternatively, you could look in the system catalogues: pg_enum