Entered data appears TWICE in table!!?

Поиск
Список
Период
Сортировка
От rmorgan7@austin.rr.com (Ron M.)
Тема Entered data appears TWICE in table!!?
Дата
Msg-id d7fc3008.0403301129.22a499c9@posting.google.com
обсуждение исходный текст
Ответы Re: Entered data appears TWICE in table!!?
Список pgsql-sql
I'm JUST getting started with the online SQL tutorial at
http://sqlcourse.com.  When I create a table and insert data, the data
appears TWICE. A simple example:

***Create the table:

create table rnmrgntable
(first varchar(20),
last varchar(30));

***Insert data:

insert into rnmrgntable
(first, last)
values ('Bill' , 'Smith');

***Then look at the table:

select * from rnmrgntable;

And I get:

first    last
Bill    Smith
Bill    Smith

EVERYTHING I enter appears twice, duplicated on two rows as in this
example.  What the heck's going on?

Ron M.


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

Предыдущее
От: "Bulatovic Natasa"
Дата:
Сообщение: Re: Invalid Unicode Character Sequence found
Следующее
От: Kyle
Дата:
Сообщение: Simple insert not returning