select max(imagefileid) imagefileid from docimagefile where docid=? group by id order by imagefileid desc 只查 isextfile 为空或者为null的数据
时间: 2024-01-21 17:02:44 浏览: 50
sql连接查询中,where关键字的位置讲解
您可以尝试以下 SQL 语句:
```
SELECT MAX(imagefileid) AS imagefileid
FROM docimagefile
WHERE docid=? AND (isextfile IS NULL OR isextfile='')
GROUP BY id
ORDER BY imagefileid DESC
```
这样可以筛选出 `isextfile` 为空或者为 null 的数据。请注意,这里我假设 `isextfile` 的数据类型为字符串类型,如果不是,请将 `''` 替换为对应类型的空值。
阅读全文