sql >> Database >  >> RDS >> PostgreSQL

PLpgSQL-functie om kolommen met alleen NULL-waarden in een bepaalde tabel te vinden

U kunt de catalogustabel pg_attribute om een ​​lijst met kolommen te krijgen die niet zijn gedefinieerd NIET NULL en daarom kan houd NULL ingedrukt waarden:

SELECT quote_ident(attname) AS column_can_be_null
FROM   pg_attribute
WHERE  attrelid = 'tbl'::regclass -- valid, visible table name 
AND    attnum >= 1                -- exclude tableoid & friends
AND    NOT attisdropped           -- exclude dropped columns
AND    NOT attnotnull             -- exclude columns defined NOT NULL!
ORDER  BY attnum;

Waar tbl is uw (optioneel schema-gekwalificeerde) tabelnaam.

Zegt niet dat er daadwerkelijke NULL-waarden in de kolom zijn. Je zou elke kolom moeten testen. Zoals dit:

Volledige automatisering met plpgsql-functie

CREATE OR REPLACE FUNCTION f_all_null_columns_of_tbl(_tbl regclass)
  RETURNS SETOF text AS
$func$
DECLARE
   _row_ct  bigint;        -- count rows in table $1
   _sql     text;          -- SQL string to test for NULL values
   _cols    text[];        -- array of candidate column names
   _nulls   bool[];        -- array of test results
BEGIN

EXECUTE 'SELECT count(*) FROM ' || _tbl
INTO _row_ct;

IF _row_ct = 0 THEN
   RAISE EXCEPTION 'Table % has no rows!', _tbl;  -- pointless for empty table
ELSE
   RAISE NOTICE '% rows in table %.', _row_ct, _tbl; 
END IF;

SELECT INTO _sql, _cols
      'SELECT ARRAY[' || string_agg('bool_and(' || col || ' IS NULL)', ', ')
       || '] FROM ' || _tbl
    , array_agg(col)
FROM  (
   SELECT quote_ident(attname) AS col
   FROM   pg_attribute
   WHERE  attrelid = _tbl            -- valid, visible table name 
   AND    attnum >= 1                -- exclude tableoid & friends
   AND    NOT attisdropped           -- exclude dropped columns
   AND    NOT attnotnull             -- exclude columns defined NOT NULL!
   ORDER  BY attnum
   ) sub;

EXECUTE _sql INTO _nulls;

FOR i IN 1 .. array_upper(_cols, 1)
LOOP
   IF _nulls[i] THEN                 -- column is NULL in all rows
      RETURN NEXT _cols[i];
   END IF;
END LOOP;

RETURN;
END
$func$ LANGUAGE plpgsql;

Bel:

SELECT f_all_null_columns_of_tbl('my_schema.my_table');

Getest met Postgres 9.1 en 9.3.
Dit gebruikt een aantal geavanceerde plpgsql-functies.

SQL Fiddle.

Gerelateerd antwoord SQL-code bouwen en uitvoeren, met moderne syntaxis:

Over het doorlopen van een record:




  1. Hoe maak je een database met UTF-8-sortering in PostgreSQL op Windows?

  2. sorteren op hoog-lage prijs met mysql-gegevens

  3. JSON_TYPE() - Krijg een JSON-waardetype in MySQL

  4. psycopg2 hoe om te gaan met TypeError:niet alle argumenten geconverteerd tijdens het formatteren van strings