首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

帮忙把一句sql求id最大值转换成access解决办法

2013-10-30 
帮忙把一句sql求id最大值转换成access帮忙把sql转换成accessSQL:select isnull(max(ArticleId),0) as newI

帮忙把一句sql求id最大值转换成access
帮忙把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

热点排行