毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> 数据库 >> 正文

oracle怎么能给所有select字段赋默认值

更新时间:2013-4-9:  来源:毕业论文

oracle怎么能给所有select字段赋默认值
类似这样sql:select 字段1,字段2,‘hello,world’ from table1  where 字段1=?,
如果没有数据,还希望输出hello,world,其他两个字段,随便填个值,比如0

必须有where,实际根据这个where条件表里有时会有数据,有时是没有匹配的数据的,但是没有匹配数据的时候还希望输出hello,world,其他两个字段,随便填个值,比如0。\
-- 用union all加以解决: -- 例如: select c1, c2 from (select c1, c2 from tb_name          union all        select 'hello' as c1, 'world' as c2 from dual) t where rownum=1;   select c1, c2 from (select ename as c1, job as c2 from emp where empno=7900         union all        select 'hello' as c1, 'world' as c2 from dual) t where rownum=1;     select c1, c2 from (select ename as c1, job as c2 from emp where empno=7901         union all        select 'hello' as c1, 'world' as c2 from dual) t where rownum=1;

select max(dummy) dmy,'hello world' hi from dual where 1=1;     select max(dummy) dmy,'hello world' hi from dual where 1=2;

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。