帮忙把sql转换成access
SQL:select isnull(max(ArticleId),0) as newIDValue from Article
ACCESS:?
------解决方案--------------------
try this,
select iif(isnull(max(ArticleId)),0,max(ArticleId)) as newIDValue from Article
select iif(isnull(max(ArticleId)),0,max(ArticleId)) as newIDValue from Article