会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
网瘾少女
博客园
首页
新随笔
联系
订阅
管理
2021年8月27日
用SQL检测俩字段是否同时为空或同时不为空
摘要: 常规写法: select * from temp where 字段1 is null and 字段2 is not null or 字段1 is not null and 字段2 is null 高级写法: select * from temp where decode(字段1,null,0,1)
阅读全文
posted @ 2021-08-27 17:07 网瘾少女
阅读(2225)
评论(0)
推荐(0)
公告