如何在 postgresql 中查询枚举的值

发布于 2024-08-09 22:52:12 字数 98 浏览 2 评论 0原文

您好,我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫轩蝶泪 2024-08-16 22:52:12
SELECT unnest(enum_range(NULL::your_enum))::text AS your_column

这将返回枚举“your_enum”内容的单列结果集,其中包含名为“your_column”的文本类型列。

SELECT unnest(enum_range(NULL::your_enum))::text AS 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.

拥抱影子 2024-08-16 22:52:12

请参阅手册:函数和运算符/枚举支持函数
您可能需要 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文