Hallo,
kann ich diese 2 Querys in einem unterbringen?
select
e.part_id,
t.name
into temp
from event e,
type t
where
e.type_id=t.id
and t.name='lager'
and e.status=1
except
select
e.part_id,
t.name
from EVENT e,
type t
where
e.type_id=t.id
and t.name='lager'
and e.status=2
select*fromtempwherepart_id>1000
Danke!
kann ich diese 2 Querys in einem unterbringen?
select
e.part_id,
t.name
into temp
from event e,
type t
where
e.type_id=t.id
and t.name='lager'
and e.status=1
except
select
e.part_id,
t.name
from EVENT e,
type t
where
e.type_id=t.id
and t.name='lager'
and e.status=2
select*fromtempwherepart_id>1000
Danke!