小编典典

我们可以在Hibernate HQL查询中连接两个属性吗?

hibernate

可以说我有一个具有两列firstnamelastnameString数据类型的表。通常我写我的hql查询像

"select firstname,lastname from contact"

我可以编写将两个属性都连接在一起的hql查询吗?

也许像 "select firstname+lastname as fullname from Contact"


阅读 253

收藏
2020-06-20

共1个答案

小编典典

select concat(c.firstname, c.lastname) as fullname from Contact c

或者,如果您想要分隔符:

select concat(c.firstname, ' ', c.lastname) as fullname from Contact c

请参阅文档

2020-06-20