Hi all again,
It isn't dark magic, it's a date format.
See to me:
create view v_aaa as
select 0 code, f1, ... from t1...
where d<=to_date('00.00.0000','DD.MM.YYYY') ...
union all
select 50 code, f1, ... from t2...
where d<='00.00.0000' ...
So, the second part view CR don't get.
But SQL+...
Hi,
I had create a view with union operation.
The view have static field, exm:
create view v_aaa as
select 0 code, f1, ... from t1... where ...
union all
select 50 code, f1, ... from t2... where ...
Ok!
In Crystal Report 8.5:
select code, f1 from v_aaa odrder by f1
So, CR don't fetch...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.