create table poligon
(
nom integer not null,
nom_grope integer not null,
act char(1) default 'f'
);
create table poligon_point
(
nom integer not null,
nom_point integer not null,
u float not null,
v float not null
);
проблема с сортировкой...
есть таблицы..
Код:
при запросе
Код:
select NOM_GROPE, POLIGON.NOM, POLIGON_POINT.NOM_POINT
from POLIGON, POLIGON_POINT
where POLIGON_POINT.NOM=POLIGON.NOM
order by NOM_GROPE, POLIGON.NOM
from POLIGON, POLIGON_POINT
where POLIGON_POINT.NOM=POLIGON.NOM
order by NOM_GROPE, POLIGON.NOM
сортируется еще и NOM_POINT.... как этого избежать???
и почему оно сортируется???
пс... индексов нет