Excluir das linhas da tabela em que qualquer campo da coluna é nulo


11

Existe uma maneira de excluir uma linha de uma tabela na qual qualquer campo da coluna é nulo sem especificar explicitamente qual coluna é nula?

Estou usando o postgreSQL.

Aqui está o meu esquema de relação:

  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 | 

obrigado

Respostas:


18

Eu vejo duas maneiras de fazer isso:

Com o SQL padrão, basta listar todas as colunas e combinar isso com um 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;

Outra solução (específica do Postgres) é a comparação de toda a linha com NOT NULL

select *
from the_table
where the_table is not null;

retornará apenas linhas onde todas as colunas não são nulas. Você deseja o contrário, portanto, é necessário negar que where not (the_table is not null)A condição where the_table is nullé algo diferente - que corresponde apenas às linhas em que todas as colunas são nulas.

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

Obrigado! Eu acho que a segunda solução é a solução que eu estava procurando.
Dhaliman 15/07/16

3
isso é engenhoso
Jack diz que tente topanswers.xyz

Eu realmente gosto da where not (the_table is not null);abordagem clara e concisa . Melhor o que consigo pensar em SQL geral é NATURAL JOIN.
lad2025

0

Se você não quiser especificar cada coluna, poderá usar NOT EXISTS ... NATURAL JOIN.

Atenção! Esta solução não é melhor do ponto de vista do desempenho. Ele deve funcionar no Oracle / PostgreSQL / SQLite / MariaDB 10.3.2 e superior.

Configurando:

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 consulta:

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

Resultado:

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

DBFiddle Demo

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.