Oracle使用总结
作者:互联网
1.Oracle中连接字符串有两种方式:
(1)使用||
select * from hrp_eps.eps_equ_buy_apply where equ_name like '%'||'测试'||'%';
select '设备名称:'||equ_name from hrp_eps.eps_equ_buy_apply;
(2)使用CONCAT()函数,可以多层嵌套
select * from hrp_eps.eps_equ_buy_apply where equ_name like concat(concat('%','测试'),'%');
select concat('设备名称为:',equ_name) from hrp_eps.eps_equ_buy_apply;
两种方式的效果是一样的。
2.Oracle中NVL(expr1,expr2)函数的使用
该函数的含义:如果第一个参数为空,那么显示第二个参数
标签:总结,buy,equ,eps,hrp,使用,Oracle,apply,select 来源: https://blog.csdn.net/u013394212/article/details/90287087