Datadictionary OpenWave 3.1.25
Previous topic Chapter index Next topic

View: vwovminmaxdeadline

 

 

Schema

public

 

Owner

waveuser005

 

Descriptions

There is no description for view vwovminmaxdeadline

 

Fields

Name

Data type

Description

ddtrmmaxdeadline

timestamp

 

ddtrmmindeadline

timestamp

 

dnkeyovvergunningen

integer

 

 

Rules

Name

Event

Instead

Condition

Description

_RETURN

SELECT

 

 

 

Indices

There are no indices for table vwovminmaxdeadline

 

Definition

CREATE VIEW public.vwovminmaxdeadline (
   ddtrmmaxdeadline,
   ddtrmmindeadline,
   dnkeyovvergunningen)
AS
SELECT
max(a.dddeadline) AS ddtrmmaxdeadline,
   min(a.dddeadline) AS ddtrmmindeadline,
   a.dnkeyovvergunningen
FROM tbtermijnbewstappen a
    JOIN tbovvergunningen b ON a.dnkeyovvergunningen = b.dnkey
WHERE b.ddblokkering IS NULL AND a.ddafgehandeld IS NULL AND a.dlingebruik =
   'T'::bpchar AND (a.dvvoorwaardejn = 'N'::bpchar OR a.dnvoorwaarde > 0) AND lower(a.dvtermijnomschrijving::text) <> 'tussenregel'::text
GROUP BY a.dnkeyovvergunningen;

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 5-1-2022 14:13
Previous topic Chapter index Next topic