有两张表 Test(id, tid, name, logintime) 与Test1(tid, age)
Test中数据为
id tid name logintime
1 1 张三 1998-01-02
2 2 李四 1998-01-03
Test1中数据位
tid age grade
1 13 初一
2 18 高三
我想通过 Test1表的tid查询Test中的tid,根据Test表logintime排序
from Test1 as a where a.tid in(select b.tid from Test as b);
这句hibernate语句成功把两张表为符合各自的tid查出来了 只是如何排序呢?求解