5.6. Funciones de restricción

5.6.1. Funciones de selección

Estas funciones restringen el valor temporal con respecto a una extensión de valores o de tiempo.

  • Restringir a un valor

    atValue(ttype,base): ttype

    SELECT atValue(tint '[1@2012-01-01, 1@2012-01-15)', 1);
    -- "[1@2012-01-01, 1@2012-01-15)"
    SELECT asText(atValue(tgeompoint '[Point(0 0 0)@2012-01-01, Point(2 2 2)@2012-01-03)',
      'Point(1 1 1)'));
    -- "{[POINT Z (1 1 1)@2012-01-02]}"
    
  • Restringir a una matriz de valores

    atValues(ttype,base[]): ttype

    SELECT atValues(tfloat '[1@2012-01-01, 4@2012-01-4)', ARRAY[1, 3, 5]);
    -- "{[1@2012-01-01], [3@2012-01-03]}"
    SELECT asText(atValues(tgeompoint '[Point(0 0)@2012-01-01, Point(2 2)@2012-01-03)',
      ARRAY[geometry 'Point(0 0)', 'Point(1 1)']));
    -- "{[POINT(0 0)@2012-01-01 00:00:00+00], [POINT(1 1)@2012-01-02 00:00:00+00]}"
    
  • Restringir a un rango de valores

    atRange(tnumber,numrange): ttype

    SELECT atRange(tfloat '[1@2012-01-01, 4@2012-01-4)', floatrange '[1,3]');
    -- "[1@2012-01-01, 3@2012-01-03]"
    
  • Restringir a una matriz de rangos de valores

    atRanges(tnumber,numrange[]): ttype

    SELECT atRanges(tfloat '[1@2012-01-01, 5@2012-01-05)',
      ARRAY[floatrange '[1,2]', '[3,4]']);
    -- "{[1@2012-01-01, 2@2012-01-02],[3@2012-01-03, 4@2012-01-04]}"
    
  • Restringir al valor mínimo

    atMin(torder): torder

    La función devuelve nulo si el valor mínimo sólo ocurre en límites exclusivos.

    SELECT atMin(tint '{1@2012-01-01, 2@2012-01-03, 1@2012-01-05}');
    -- "{1@2012-01-01, 1@2012-01-05}"
    SELECT atMin(tint '(1@2012-01-01, 3@2012-01-03]');
    -- "{(1@2012-01-01, 1@2012-01-03)}"
    SELECT atMin(tfloat '(1@2012-01-01, 3@2012-01-03]');
    -- NULL
    SELECT atMin(ttext '{(AA@2012-01-01, AA@2012-01-03), (BB@2012-01-03, AA@2012-01-05]}');
    -- "{(AA@2012-01-01, AA@2012-01-03), [AA@2012-01-05]}"
    
  • Restringir al valor máximo

    atMax(torder): torder

    La función devuelve nulo si el valor máximo sólo ocurre en límites exclusivos.

    SELECT atMax(tint '{1@2012-01-01, 2@2012-01-03, 3@2012-01-05}');
    -- "{3@2012-01-05}"
    SELECT atMax(tfloat '(1@2012-01-01, 3@2012-01-03)');
    -- NULL
    SELECT atMax(tfloat '{(2@2012-01-01, 1@2012-01-03), [2@2012-01-03, 2@2012-01-05)}');
    -- "{[2@2012-01-03, 2@2012-01-05]}"
    SELECT atMax(ttext '{(AA@2012-01-01, AA@2012-01-03), (BB@2012-01-03, AA@2012-01-05]}');
    -- "{("BB"@2012-01-03, "BB"@2012-01-05)}"
    
  • Restringir a una geometría

    atGeometry(tgeompoint,geometry): tgeompoint

    Tenga en cuenta que está permitido mezclar geometrías 2D/3D, pero el cálculo sólo se realiza en 2D.

    SELECT asText(atGeometry(tgeompoint '[Point(0 0)@2012-01-01, Point(3 3)@2012-01-04)',
      geometry 'Polygon((1 1,1 2,2 2,2 1,1 1))'));
    -- "{"[POINT(1 1)@2012-01-02, POINT(2 2)@2012-01-03]"}"
    SELECT astext(atGeometry(tgeompoint '[Point(0 0 0)@2000-01-01, Point(4 4 4)@2000-01-05]',
      geometry 'Polygon((1 1,1 2,2 2,2 1,1 1))'));
    -- "{[POINT Z (1 1 1)@2000-01-02, POINT Z (2 2 2)@2000-01-03]}"
    
  • Restringir a una marca de tiempo

    atTimestamp(ttype,timestamptz): ttype_inst

    SELECT atTimestamp(tfloat '[1@2012-01-01, 5@2012-01-05)', '2012-01-02');
    -- "2@2012-01-02"
    
  • Restringir a un conjunto de marcas de tiempo

    atTimestampSet(ttype,timestampset): {ttype_inst,ttype_instset}

    SELECT atTimestampSet(tint '[1@2012-01-01, 1@2012-01-15)',
      timestampset '{2012-01-01, 2012-01-03}');
    -- "{1@2012-01-01, 1@2012-01-03}"
    
  • Restringir a un período

    atPeriod(ttype,period): ttype

    SELECT atPeriod(tfloat '{[1@2012-01-01, 3@2012-01-03), [3@2012-01-04, 1@2012-01-06)}',
      '[2012-01-02,2012-01-05)');
    -- "{[2@2012-01-02, 3@2012-01-03), [3@2012-01-04, 2@2012-01-05)}"
    
  • Restringir a un conjunto de períodos

    atPeriodSet(ttype,periodset): ttype

    SELECT atPeriodSet(tint '[1@2012-01-01, 1@2012-01-15)',
      periodset '{[2012-01-01, 2012-01-03), [2012-01-04, 2012-01-05)}');
    -- "{[1@2012-01-01, 1@2012-01-03),[1@2012-01-04, 1@2012-01-05)}"
    
  • Restringir a un tbox

    atTbox(tnumber,tbox): tnumber

    SELECT atTbox(tfloat '[0@2012-01-01, 3@2012-01-04)',
      tbox 'TBOX((0, 2012-01-02), (2, 2012-01-04))');
    -- "{[1@2012-01-02, 2@2012-01-03]}"
    
  • Restringir a un stbox

    atStbox(tgeompoint,stbox): tgeompoint

    SELECT asText(atStbox(tgeompoint '[Point(0 0)@2012-01-01, Point(3 3)@2012-01-04)',
      stbox 'STBOX T((0, 0, 2012-01-02), (2, 2, 2012-01-04))'));
    -- "{[POINT(1 1)@2012-01-02, POINT(2 2)@2012-01-03]}"
    

5.6.2. Funciones de diferencia

Estas funciones restringen el valor temporal con respecto al complemento de una extensión de valores o de tiempo.

  • Diferencia con un valor

    minusValue(ttype,base): ttype

    SELECT minusValue(tint '[1@2012-01-01, 2@2012-01-02, 2@2012-01-03)', 1);
    -- "{[2@2012-01-02, 2@2012-01-03)}"
    SELECT asText(minusValue(tgeompoint '[Point(0 0 0)@2012-01-01, Point(2 2 2)@2012-01-03)',
      'Point(1 1 1)'));
    -- "{[POINT Z (0 0 0)@2012-01-01, POINT Z (1 1 1)@2012-01-02),
      (POINT Z (1 1 1)@2012-01-02, POINT Z (2 2 2)@2012-01-03)}"
    
  • Diferencia con una matriz de valores

    minusValues(ttype,base[]): ttype

    SELECT minusValues(tfloat '[1@2012-01-01, 4@2012-01-4)', ARRAY[2, 3]);
    -- "{[1@2012-01-01, 2@2012-01-02), (2@2012-01-02, 3@2012-01-03),
      (3@2012-01-03, 4@2012-01-04)}"
    SELECT asText(minusValues(tgeompoint '[Point(0 0 0)@2012-01-01, Point(3 3 3)@2012-01-04)',
      ARRAY[geometry 'Point(1 1 1)', 'Point(2 2 2)']));
    -- "{[POINT Z (0 0 0)@2012-01-01, POINT Z (1 1 1)@2012-01-02),
      (POINT Z (1 1 1)@2012-01-02, POINT Z (2 2 2)@2012-01-03),
      (POINT Z (2 2 2)@2012-01-03, POINT Z (3 3 3)@2012-01-04)}"
    
  • Diferencia con un rango de valores

    minusRange(tnumber,numrange): ttype

    SELECT minusRange(tfloat '[1@2012-01-01, 4@2012-01-4)', floatrange '[2,3]');
    -- "{[1@2012-01-01, 2@2012-01-02), (3@2012-01-03, 4@2012-01-04)}"
    
  • Diferencia con una matriz de rangos de valores

    minusRanges(tnumber,numrange[]): ttype

    SELECT minusRanges(tfloat '[1@2012-01-01, 5@2012-01-05)',
      ARRAY[floatrange '[1,2]', '[3,4]']);
    -- "{(2@2012-01-02, 3@2012-01-03), (4@2012-01-04, 5@2012-01-05)}"
    
  • Diferencia con el valor mínimo

    minusMin(torder): torder

    SELECT minusMin(tint '{1@2012-01-01, 2@2012-01-03, 1@2012-01-05}');
    -- "{2@2012-01-03}"
    SELECT minusMin(tfloat '[1@2012-01-01, 3@2012-01-03]');
    -- "{(1@2012-01-01, 3@2012-01-03]}"
    SELECT minusMin(tfloat '(1@2012-01-01, 3@2012-01-03)');
    -- "{(1@2012-01-01, 3@2012-01-03)}"
    SELECT minusMin(tint '{[1@2012-01-01, 1@2012-01-03), (1@2012-01-03, 1@2012-01-05)}');
    -- NULL
    
  • Diferencia con el valor máximo

    minusMax(torder): torder

    SELECT minusMax(tint '{1@2012-01-01, 2@2012-01-03, 3@2012-01-05}');
    -- "{1@2012-01-01, 2@2012-01-03}"
    SELECT minusMax(tfloat '[1@2012-01-01, 3@2012-01-03]');
    -- "{[1@2012-01-01, 3@2012-01-03)}"
    SELECT minusMax(tfloat '(1@2012-01-01, 3@2012-01-03)');
    -- "{(1@2012-01-01, 3@2012-01-03)}"
    SELECT minusMax(tfloat '{[2@2012-01-01, 1@2012-01-03), [2@2012-01-03, 2@2012-01-05)}');
    -- "{(2@2012-01-01, 1@2012-01-03)}"
    SELECT minusMax(tfloat '{[1@2012-01-01, 3@2012-01-03), (3@2012-01-03, 1@2012-01-05)}');
    -- "{[1@2012-01-01, 3@2012-01-03), (3@2012-01-03, 1@2012-01-05)}"
    
  • Diferencia con una geometría

    minusGeometry(tgeompoint,geometry): tgeompoint

    Tenga en cuenta que está permitido mezclar geometrías 2D/3D, pero el cálculo sólo se realiza en 2D.

    SELECT asText(minusGeometry(tgeompoint '[Point(0 0)@2012-01-01, Point(3 3)@2012-01-04)',
      geometry 'Polygon((1 1,1 2,2 2,2 1,1 1))'));
    -- "{[POINT(0 0)@2012-01-01, POINT(1 1)@2012-01-02), (POINT(2 2)@2012-01-03,
      POINT(3 3)@2012-01-04)}"
    SELECT astext(minusGeometry(tgeompoint '[Point(0 0 0)@2000-01-01,
      Point(4 4 4)@2000-01-05]', geometry 'Polygon((1 1,1 2,2 2,2 1,1 1))'));
    -- "{[POINT Z (0 0 0)@2000-01-01, POINT Z (1 1 1)@2000-01-02),
      (POINT Z (2 2 2)@2000-01-03, POINT Z (4 4 4)@2000-01-05]}"
    
  • Diferencia con una marca de tiempo

    minusTimestamp(ttype,timestamptz): ttype

    SELECT minusTimestamp(tfloat '[1@2012-01-01, 5@2012-01-05)', '2012-01-02');
    -- "{[1@2012-01-01, 2@2012-01-02), (2@2012-01-02, 5@2012-01-05)}"
    
  • Diferencia con un conjunto de marcas de tiempo

    minusTimestampSet(ttype,timestampset): ttype

    SELECT minusTimestampSet(tint '[1@2012-01-01, 1@2012-01-15)',
      timestampset '{2012-01-02, 2012-01-03}');
    -- "{[1@2012-01-01, 1@2012-01-02), (1@2012-01-02, 1@2012-01-03),
    (1@2012-01-03, 1@2012-01-15)}"
    
  • Diferencia con un período

    minusPeriod(ttype,period): ttype

    SELECT minusPeriod(tfloat '{[1@2012-01-01, 3@2012-01-03), [3@2012-01-04, 1@2012-01-06)}',
      '[2012-01-02,2012-01-05)');
    -- "{[1@2012-01-01, 2@2012-01-02), [2@2012-01-05, 1@2012-01-06)}"
    
  • Diferencia con un conjunto de períodos

    minusPeriodSet(ttype,periodset): ttype

    SELECT minusPeriodSet(tint '[1@2012-01-01, 1@2012-01-15)',
      periodset '{[2012-01-02, 2012-01-03), [2012-01-04, 2012-01-05)}');
    -- "{[1@2012-01-01, 1@2012-01-02), [1@2012-01-03, 1@2012-01-04),
      [1@2012-01-05, 1@2012-01-15)}"
    
  • Diferencia con un tbox

    minusTbox(tnumber,tbox): tnumber

    SELECT minusTbox(tfloat '[0@2012-01-01, 3@2012-01-04)',
      tbox 'TBOX((0, 2012-01-02), (2, 2012-01-04))');
    -- "{[0@2012-01-01, 1@2012-01-02), (2@2012-01-03, 3@2012-01-04)}"
    
  • Diferencia con un stbox

    minusStbox(tgeompoint,stbox): tgeompoint

    SELECT asText(minusStbox(tgeompoint '[Point(0 0)@2012-01-01, Point(3 3)@2012-01-04)',
      stbox 'STBOX T((0, 0, 2012-01-02), (2, 2, 2012-01-04))'));
    -- "{[POINT(0 0)@2012-01-01, POINT(1 1)@2012-01-02),
      (POINT(2 2)@2012-01-03, POINT(3 3)@2012-01-04)}"