以下は、特定のタイプのクラスの HQL クエリです。
select a from Animal a
where TYPE(a) in ('Cat', 'Dog')
and a.sex = 'Male'
order by a.name
select a from Animal a
where a.class in ('Cat', 'Dog')
and a.sex = 'Male'
order by a.name
QueryOverを使用して同等のものがあるのだろうか?
以下は、特定のタイプのクラスの HQL クエリです。
select a from Animal a
where TYPE(a) in ('Cat', 'Dog')
and a.sex = 'Male'
order by a.name
select a from Animal a
where a.class in ('Cat', 'Dog')
and a.sex = 'Male'
order by a.name
QueryOverを使用して同等のものがあるのだろうか?