sql

Поиск
Список
Период
Сортировка
От cristi
Тема sql
Дата
Msg-id 006c01c4590c$9402af20$7202a8c0@cristiv
обсуждение исходный текст
Ответы Re: sql  (Jeffrey Melloy <jmelloy@visualdistortion.org>)
Re: sql  (Andrew Hammond <ahammond@ca.afilias.info>)
Список pgsql-novice
I have the following table structure:

CREATE TABLE "xxx" (
 "co" character varying(7),
 "co1" character varying(9),
 "n1" character varying(15),
 "l1" character varying(5),
 "m1" smallint,
 "ore" bigint
);

who contains the following date:

22021CC 1044 637 S5G8 407 5
22021CC 1044 637 S5G8 409 47
22021CD 1044 637 S5G8 410 24
22022BB 1044 637 S5G8 409 10

I need a SQL select which result to be:

22021CC 1044 637 S5G8 407 5
22021CC 1044 637 S5G8 409 57
22021CD 1044 637 S5G8 410 24

I mean:
I want to select the records wich for co1,n1,l1,m1 value are the same and
has the maxim value of the ore field
adding to that value the value of the records which are not selected.

Wou!
Thanks in advance!



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

Предыдущее
От: Justus Mugbeh
Дата:
Сообщение: where and how can I get a software for postgres - database?
Следующее
От: Frank Kurzawa
Дата:
Сообщение: Re: Committed updates don't seem to be committed.