declare @selectCount int,@allCount int,@lostCount int 
select @selectCount=count(1) from TB_ITEM where ItemName is not null 
select @allCount=count(1) from TB_ITEM 
select @lostCount=count(1) from TB_ITEM where ItemName is null 
select @selectCount as SelectCount,@AllCount as allCount,@lostCount as LostCountsql这么写没问题,怎么改成Oracle的啊