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.
我正在使用 NetBeans,当我编写 HQL 查询时,我看到了一些奇怪的结果,当我在 HQL 编辑器中进行查询时,像这样from User,它返回我所期望的,但如果我写:select a.name from User a,它什么也不返回,只是类型列 name 处的名称query(Char Char Byte Byte),尽管它表示记录数。有人见过这个吗?
from User
select a.name from User a
query(Char Char Byte Byte)
当您使用 HQL asselect a.name from User a时,它应该返回String[]假设a.name是 String 类型。请相应地更新结果检索/迭代并打印输出。它应该工作。
String[]
a.name