I need to combine 2 tables using hql, both are having common column, but table1 common column is integer and table2 common column is <
table1
integer
table2
HQL supports CAST (if underlying database supports it), you can use it:
CAST
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: