
16 Sep
2009
16 Sep
'09
6:46 p.m.
Jean-Louis Leroy wrote:
Like this :
select((t.id)).from(t).where(t.name.like("pattern"))
select((t1.id, t2.id)).from((t1, t2, p)) .where((t1.income + t2.income).between(20, 40) && p.husband == t1.id && p.wife == t2.id)
Do you plan to support non trivial projections in select()? For example: SELECT CONCAT(last_name,', ',first_name) AS full_name