Re: [GENERAL] Problems with inequalities on numeric fields in 6.5

Поиск
Список
Период
Сортировка
От Jonathan davis
Тема Re: [GENERAL] Problems with inequalities on numeric fields in 6.5
Дата
Msg-id 000601bec88a$90d0d600$0601a8c0@kosovo.idianet.net
обсуждение исходный текст
Список pgsql-general
hello all

i want to : update virtual_table set field1 = 3 where index = 4;

create table virtual_table(index int4, field1 int4);

create table table1 ( ....)inherits(virtual_table);

create table table2( ....)inherits(virtual_table);

insert into table1(index, field1) values(4, 0);

and i want to change the value of field1


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

Предыдущее
От: Ted Nolan SRI Augusta GA
Дата:
Сообщение: Re: [GENERAL] How to compile PosttgreSQL on NT
Следующее
От: "Jonathan davis"
Дата:
Сообщение: update and inherits