How do I write hql query with cast?

后端 未结 4 594
悲&欢浪女
悲&欢浪女 2020-12-06 09:04

I need to combine 2 tables using hql, both are having common column, but table1 common column is integer and table2 common column is <

4条回答
  •  粉色の甜心
    2020-12-06 09:26

    HQL supports CAST (if underlying database supports it), you can use it:

    select a.id as id,a.name as name,b.address as address 
    from Personal as a,Home as b
    where cast(a.id as string) = b.studid 
    

    See also:

    • 16.10. Expressions

提交回复
热议问题