Re: Help with a selection

Поиск
Список
Период
Сортировка
От Dirk Mika
Тема Re: Help with a selection
Дата
Msg-id 9EB37987-6EB3-4833-9F9A-C255CB432C3F@mikatiming.de
обсуждение исходный текст
Ответ на Help with a selection  (<paul.malm@lfv.se>)
Список pgsql-general

Hi,

 

I would like to remove an object that doesn’t end ‘00’ and if there are objects that start with the same 4 charcters and ending with 00.

All objects ending with 00 shall remain.

All object not ending with 00 shall remain of there is no object starting with the same 4 characters and ending with 00   

 

What about:

 

DELETE FROM tab t1

      WHERE     right (t1.col, 2) != '00'

            AND EXISTS

                   (SELECT 1

                      FROM tab t2

                     WHERE t2.col = left (t1.col, 4) || '00');

 

It deletes rows where the right two characters are not ‘00’ and another row with the same first four characters and ‘00’ at the end exists.

 

Dirk

--
Dirk Mika
Software Developer



mika:timing GmbH
Strundepark - Kürtener Str. 11b
51465 Bergisch Gladbach
Germany

fon +49 2202 2401-1197
dirk.mika@mikatiming.de
www.mikatiming.de

AG Köln HRB 47509 * WEEE-Reg.-Nr. DE 90029884
Geschäftsführer: Harald Mika, Jörg Mika


 
Вложения

В списке pgsql-general по дате отправления:

Предыдущее
От:
Дата:
Сообщение: Help with a selection
Следующее
От: Laurenz Albe
Дата:
Сообщение: Re: Expression of check constraint