Usuń z wierszy tabeli, w których dowolne pole kolumny jest puste

12

Czy istnieje sposób na usunięcie wiersza z tabeli, w której dowolne pole kolumny jest puste, bez wyraźnego określenia, która kolumna jest pusta?

Używam postgreSQL.

Oto mój schemat relacji:

  Column    |  Type   |                              Modifiers                               
  --------------+---------+----------------------------------------------------------------------
  id           | integer | not null default  nextval('aurostat.visitor_center_id_seq'::regclass)
  date         | date    | 
  persons      | integer | 
  two_wheelers | integer | 
  cars         | integer | 
  vans         | integer | 
  buses        | integer | 
  autos        | integer | 

Dzięki

dhaliman
źródło

Odpowiedzi:

19

Widzę na to dwa sposoby:

W przypadku zwykłego standardowego kodu SQL wystarczy po prostu wyświetlić listę wszystkich kolumn i połączyć je z operatorem LUB:

delete from the_table
where date is null
   or persons is null
   or two_wheelers is null
   or cars is null
   or vans is null
   or buses is null
   or autos is null;

Innym rozwiązaniem (specyficznym dla Postgres) jest porównanie całego wiersza NOT NULL

select *
from the_table
where the_table is not null;

zwróci tylko wiersze, w których wszystkie kolumny nie są puste. Chcesz czegoś przeciwnego, więc musisz zanegować, że where not (the_table is not null)warunek where the_table is nulljest inny - pasuje tylko do wierszy, w których wszystkie kolumny są puste.

delete from the_table
where not (the_table is not null);
koń bez imienia
źródło
Dziękuję Ci! Myślę, że drugim rozwiązaniem jest rozwiązanie, którego szukałem.
dhaliman
3
to genialne
Jack mówi, spróbuj wypróbować topanswers.xyz
Bardzo podoba mi się jasne i zwięzłe where not (the_table is not null);podejście. Najlepsze, co mogę w ogóle myśleć o SQL NATURAL JOIN.
lad2025
0

Jeśli nie chcesz określać każdej kolumny, której możesz użyć NOT EXISTS ... NATURAL JOIN.

Ostrzeżenie! To rozwiązanie nie jest najlepsze z punktu widzenia wydajności. Powinien działać na Oracle / PostgreSQL / SQLite / MariaDB 10.3.2 i nowszych.

Konfiguracja:

CREATE TABLE the_table(
   id           integer not null 
  ,date_          date    
  ,persons       integer 
  ,two_wheelers  integer 
  ,cars          integer 
  ,vans          integer 
  ,buses         integer 
 , autos         integer 
);

INSERT INTO the_table(id, date_, persons, two_wheelers, cars, vans, buses, autos)
VALUES (1, '21/JAN/2018',1,1,1,1,1,1);

INSERT INTO the_table(id, date_, persons, two_wheelers, cars, vans, buses, autos)
VALUES (2, '21/JAN/2018',2,2,2,2,NULL,2);
INSERT INTO the_table(id, date_, persons, two_wheelers, cars, vans, buses, autos)
VALUES (3, '21/JAN/2018',3,3,3,3,NULL,NULL);

SELECT * FROM the_table;

+----+-------------+---------+--------------+------+------+-------+-------+
| id |    date_    | persons | two_wheelers | cars | vans | buses | autos |
+----+-------------+---------+--------------+------+------+-------+-------+
|  1 | 21/JAN/2018 |       1 |            1 |    1 |    1 | 1     | 1     |
|  2 | 21/JAN/2018 |       2 |            2 |    2 |    2 | null  | 2     |
|  3 | 21/JAN/2018 |       3 |            3 |    3 |    3 | null  | null  |
+----+-------------+---------+--------------+------+------+-------+-------+

I zapytanie:

DELETE FROM the_table
WHERE NOT EXISTS (SELECT *
                  FROM the_table t1
                  NATURAL JOIN the_table t2
                  WHERE id = the_table.id);

Wynik:

+----+-------------+---------+--------------+------+------+-------+-------+
| id |    date_    | persons | two_wheelers | cars | vans | buses | autos |
+----+-------------+---------+--------------+------+------+-------+-------+
|  1 | 21/JAN/2018 |       1 |            1 |    1 |    1 |     1 |     1 |
+----+-------------+---------+--------------+------+------+-------+-------+

DBFiddle Demo

lad2025
źródło