赞
踩
Select NULLIF(1,1)
Select NULLIF(null,2)
Select NULLIF(null,null)
Select NULLIF(2,null)
Select NULLIF(2,3)
Select IFNULL(null,2)
Select IFNULL(null,null)
Select IFNULL(2,null)
Select IFNULL(1,2)
Select NVL(null, 2)
Select NVL(2, null)
Select NVL(2, 2)
Select NVL(null, null)
Select COALESCE(null, 2,3)
Select COALESCE(2, null,3)
Select COALESCE(2, 3,null)
Select COALESCE(null, null,null)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。