PostgreSQL 何时加入 ENUMS
如果我从 PostgreSQL 中枚举类型的列中运行选择,那么枚举的字符串值是在创建最终结果集之前还是之后加入的?我的动机的解释可以在 http://archives.postgresql 找到.org/pgsql-performance/2008-07/msg00226.php
If I run a select from a column in PostgreSQL that is of type enum, are the string values of the enum joined in before or after the final result set has been created? An explanation of my motive can be found at http://archives.postgresql.org/pgsql-performance/2008-07/msg00226.php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在内部它始终使用 OID。但您可以随时将其转换为文本。
Internally it uses the OID the whole time. But you can cast that to text at any time.