Elimina dalle righe della tabella in cui uno dei campi della colonna è nullo


11

C'è un modo per eliminare una riga da una tabella in cui uno dei campi della colonna è nullo senza specificare esplicitamente quale colonna è nulla?

Sto usando PostgreSQL.

Ecco il mio schema di relazione:

  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 | 

Grazie

Risposte:


18

Vedo due modi per farlo:

Con un normale SQL standard, è sufficiente elencare tutte le colonne e combinarle con un OR:

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;

Un'altra soluzione (specifica di Postgres) è il confronto dell'intera riga con NOT NULL

select *
from the_table
where the_table is not null;

restituirà solo le righe in cui tutte le colonne non sono nulle. Vuoi il contrario, quindi devi negare che where not (the_table is not null)la condizione where the_table is nullsia qualcosa di diverso - che corrisponde solo alle righe in cui tutte le colonne sono nulle.

delete from the_table
where not (the_table is not null);

Grazie! Penso che la seconda soluzione sia la soluzione che stavo cercando.
Dhaliman,


Mi piace molto l' where not (the_table is not null);approccio chiaro e conciso . Il migliore a cui riesco a pensare in generale è SQL NATURAL JOIN.
lad2025,

0

Se non si desidera specificare ogni colonna che è possibile utilizzare NOT EXISTS ... NATURAL JOIN.

Avvertimento! Questa soluzione non è ottimale dal punto di vista delle prestazioni. Dovrebbe funzionare su Oracle / PostgreSQL / SQLite / MariaDB 10.3.2 e versioni successive.

Impostare:

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  |
+----+-------------+---------+--------------+------+------+-------+-------+

E query:

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

Produzione:

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

DBFiddle Demo

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.