select x from JadGovunitauditEntity x where x.agrunit.id = ? and x.gstype = ? and x.deleted = 0 and x.task.deleted = 0 order by x.id desc
时间: 2024-05-26 10:15:46 浏览: 104
这是一条 SQL 查询语句,用于从 JadGovunitauditEntity 表中选择符合条件的记录,具体条件为:x.agrunit.id = 某个特定的值,x.gstype = 某个特定的值,x.deleted = 0,x.task.deleted = 0。其中,x.agrunit.id、x.gstype、x.deleted、x.task.deleted 都是表中的字段。查询结果按照 x.id 字段的降序排列(即从大到小排列)。
阅读全文