利用oracle视图查询缺少记录,这个问题很奇怪
这个视图v_cell_g用2个组成,ne_cell_g 和cfg_map_dev_to_ne_g利用 select * from ne_cell_g where ne_sys_id = '0102000402070002' 可以查询出该记录信息
利用 select * from cfg_map_dev_to_ne_g where ne_cell_id = '0102000402070002'     可以查询出该记录信息
    
利用v_cell_g里面的内容
select a.*,b.network_id,b.omc,b.ne_omc_id as related_omc,b.bsc,b.bts,b.cell,b.bsc_name,b.bts_name,b.omc_name
from ne_cell_g a, cfg_map_dev_to_ne_g b
where a.ne_sys_id = b.ne_cell_id and a.ne_sys_id ='0102000402070002'
 也可以查询出该记录   但是就是直接利用  v_cell_g 来查
select * from v_cell_g where ne_sys_id ='0102000402070002' 就是查不出来?
有谁碰到过这样的事情?