为了账号安全,请及时绑定邮箱和手机立即绑定

1中为什么from dual这个系统表?

--1

Select

      (Select Count(*) From emp)total,

      (Select Count(*) From emp Where to_char(hiredate,'yyyy')='1980') "1980",

      (Select Count(*) From emp Where to_char(hiredate,'yyyy')='1981') "1981",

      (Select Count(*) From emp Where to_char(hiredate,'yyyy')='1982') "1982",

      (Select Count(*) From emp Where to_char(hiredate,'yyyy')='1987') "1987"

From dual;

--2

Select um(Decode(to_char(hiredate,'yyyy'),'1980',1,0)) "1980",

       Sum(Decode(to_char(hiredate,'yyyy'),'1981',1,0))"1981",

       Sum(Count(*) totla ,

       SDecode(to_char(hiredate,'yyyy'),'1982',1,0)) "1982",

       Sum(Decode(to_char(hiredate,'yyyy'),'1987',1,0)) "1987"

       From emp ; 


正在回答

2 回答

sql标准格式  select * from 表  

1表全用的子查询查出了结果 ,最后不需要from表了,就必须用伪表dual来满足格式需要了

0 回复 有任何疑惑可以回复我~

Oracle的伪表,因为select 需要对象

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

1中为什么from dual这个系统表?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信