在 Java 中列出 MySQL 枚举
有没有办法从 MySQL 枚举列中获取所有可能的值?
MySQL 文档说MySQL 枚举类型作为 Java 字符串返回,所以我基本上想要一种方法来获取在使用此类枚举查询表时可以传递的所有可能的字符串。
当我查看为此类列返回的元数据时,我无法立即找到任何内容,但由于 enum 不是标准 SQL,我不确定它是否可能......有什么建议吗?
Is there a way to get all possible values from a MySQL enum column?
The MySQL documentation says the MySQL enum type is returned as a Java String, so I basically would like a way to get all possible strings I can pass when querying a table with such an enum.
I couldn't immediately find anything when I was looking through the metadata returned for such a column, but since enum isn't standard SQL, I'm not sure it's even possible... any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SHOW COLUMNS FROM Table LIKE 字段
返回类似以下内容的内容:枚举('值1','值2','值3','值4')
。使用正则表达式 ("/'(.*?)'/"
) 从字符串中解析出枚举值。SHOW COLUMNS FROM Table LIKE field
returns something like:enum('value1','value2','value3','value4')
. Parse out the enum values from the string with a regular expression ("/'(.*?)'/"
).