select max(imagefileid) imagefileid from docimagefile where docid=? group by id order by imagefileid desc 只查 isextfile 为空的数据
时间: 2024-01-17 22:03:32 浏览: 64
对指定文件夹的图像名称进行排序
4星 · 用户满意度95%
您可以使用以下 SQL 语句来实现:
```
SELECT MAX(imagefileid) AS imagefileid
FROM docimagefile
WHERE docid = ? AND isextfile IS NULL
GROUP BY id
ORDER BY imagefileid DESC
```
这将只查询 isextfile 为空的数据,并按照 imagefileid 的降序排列,然后选择最大的 imagefileid。
阅读全文