比如,想查询两个表的关联数据,请问怎么使用nutz的Cnd或者类对象实现以下语句?
select v.* from tb_user as u, tb_video as v where u.userId=v.userId and u.userId>10000 order by v.updateTime;
自定义SQL
哦,两个表的关联查询,只能自定义sql吗?不能使用Cnd方法的方式实现吗?
恩,可以这么说