zoukankan
html css js c++ java
oralce函数nullif使用
nullif(表达式1,表达式2) 比较两个表达式是否相等
如果相等,则返回null
如果不相等,则返回表达式1
限制条件:表达式1 不能是null
begin
if nullif(3,2) is null then
dbms_output.put_line('equal');
else
dbms_output.put_line('not equal');
end if;
end
;
查看全文
相关阅读:
Mysql中表名作为参数的问题
Mysql中时间的操作笔记
关于ThreadAbortExcption异常处理
数据库中判断为空后使用默认值的函数
网页嵌入地图的方式
常用网络CMD命令
前端html和css
C#查看文件目录操作、复制、替换
网站日志统计查询工具
SQL查看表数据占用空间代码
原文地址:https://www.cnblogs.com/wzmenjoy/p/2367646.html
最新文章
Cookie/Session的机制与安全
拼图小游戏之计算后样式与CSS动画的冲突
关于font-family
js学习之函数的参数传递
js学习之类型识别
java面笔准备
Elasticsearch 监控和部署
android http
线性表
关于算法的时间复杂度O(f(n))
热门文章
关于Oracle
Android Service 服务(三)—— bindService与remoteService
Android Service 服务(二)—— BroadcastReceiver
Android Service 服务(一)—— Service
MYSQL定时创建表分区
MYSQL 定时任务
SQLServer 中实现类似MySQL中的group_concat函数的功能
group_concat 使用
SQL Server中使用md5的方式
Tomcat 设置为服务使用脚本 service
Copyright © 2011-2022 走看看