当前位置: 代码迷 >> Informix >> informix中怎么实现sql语句中将'bat' union 到select type from t_type
  详细解决方案

informix中怎么实现sql语句中将'bat' union 到select type from t_type

热度:3474   发布时间:2013-02-26 00:00:00.0
informix中如何实现sql语句中将'bat' union 到select type from t_type?
informix中如何实现sql语句中将'bat' union 到select type from t_log?
尝试使用
select first 1 'bat' from t_log
union all
select distinct type from t_log

但报错

而oracle中能很容易的实现:
select 'bat' from dual
union all
select distinct type from t_log
------解决方案--------------------------------------------------------
呵呵,自己解决更好
------解决方案--------------------------------------------------------
select distinct 'bat' from t_log 
union all 
select distinct type from t_log 

不效率比较差。

不如直接在程序中实现。
  相关解决方案